diff options
| author | Niklas Goby | 2011-03-10 13:14:51 +0100 |
|---|---|---|
| committer | Niklas Goby | 2011-03-10 13:14:51 +0100 |
| commit | 2dd9637fee9fb61363c5ba2f68dc7a7c96b1096b (patch) | |
| tree | d71c1b4163b33faa2e39d94b44eca55f7abc1e58 /src/sysInfo.cpp | |
| parent | fixed wrong syntax in the getAllInfos() method (diff) | |
| download | fbgui-2dd9637fee9fb61363c5ba2f68dc7a7c96b1096b.tar.gz fbgui-2dd9637fee9fb61363c5ba2f68dc7a7c96b1096b.tar.xz fbgui-2dd9637fee9fb61363c5ba2f68dc7a7c96b1096b.zip | |
again syntax fix
Diffstat (limited to 'src/sysInfo.cpp')
| -rw-r--r-- | src/sysInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysInfo.cpp b/src/sysInfo.cpp index dc8ba97..968317d 100644 --- a/src/sysInfo.cpp +++ b/src/sysInfo.cpp @@ -51,7 +51,7 @@ QString sysInfo::getIPAddress(){ } // ------------------------------------------------------------------------------------------------ QString sysInfo::getAllInfos(){ - QString tmp = "[\"mac\":\"" + getMACAddress() +"\", \"ip\":\"" + getIPAddress() +"\"]"; + QString tmp = '["mac":"' + getMACAddress() + '", "ip":"' + getIPAddress() +'"]'; return tmp; } |
