NOISSUE reformat and sanitize ganalytics

This commit is contained in:
Petr Mrázek
2016-11-20 12:32:27 +01:00
parent 2ec15c32e4
commit 2f8c752d1f
11 changed files with 808 additions and 1034 deletions

View File

@@ -0,0 +1,13 @@
#include "sys.h"
#include <sys/utsname.h>
QString Sys::getSystemInfo()
{
struct utsname buf;
uname(&buf);
QString system(buf.sysname);
QString release(buf.release);
return system + "; " + release;
}