diff options
| author | 2009-07-01 17:24:13 +0000 | |
|---|---|---|
| committer | 2009-07-01 17:24:13 +0000 | |
| commit | 74000a49e93dac9da64deda081b99e5b264642ad (patch) | |
| tree | baad8d6b243c654c12314b0c8b9655662a18c4e8 /src/modules/objects/class_xmlreader.cpp | |
| parent | small fix for previous commit (diff) | |
| download | KVIrc-74000a49e93dac9da64deda081b99e5b264642ad.tar.gz KVIrc-74000a49e93dac9da64deda081b99e5b264642ad.tar.bz2 KVIrc-74000a49e93dac9da64deda081b99e5b264642ad.zip | |
improved hungarian notation;
added missing tooltips;
removed uselss definition of KviQCString
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3297 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/objects/class_xmlreader.cpp')
| -rw-r--r-- | src/modules/objects/class_xmlreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/objects/class_xmlreader.cpp b/src/modules/objects/class_xmlreader.cpp index f49ea7e64..4e2a1605d 100644 --- a/src/modules/objects/class_xmlreader.cpp +++ b/src/modules/objects/class_xmlreader.cpp @@ -347,7 +347,7 @@ KVSO_CLASS_FUNCTION(xmlreader,parse) // We have a problem here.. most kvirc functions already interpret the data // read from files. We should have binary data handling features to get this to work correctly. // The following snippet of code tries to provide a best-effort workaround. - KviQCString utf8data = KviQString::toUtf8(szString); + QByteArray utf8data = KviQString::toUtf8(szString); QByteArray data = utf8data; data.truncate(utf8data.length()); // don't include the null terminator in data source.setData(data); |
