summaryrefslogtreecommitdiff
path: root/library
authorzecke <zecke>2004-09-10 11:09:28 (UTC)
committer zecke <zecke>2004-09-10 11:09:28 (UTC)
commite64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7 (patch) (side-by-side diff)
treeb3a931b24a7ad2f22ae8c774b0fc2e9eb69c0934 /library
parentd7743f52d37979b3a3f95e8e85fdaad742e1f3c1 (diff)
downloadopie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.zip
opie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.tar.gz
opie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.tar.bz2
Fix warnings of '//' inside the comment
Diffstat (limited to 'library') (more/less context) (ignore whitespace changes)
-rw-r--r--library/backend/stringutil.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/library/backend/stringutil.cpp b/library/backend/stringutil.cpp
index b5fbd3e..f1ad1b9 100644
--- a/library/backend/stringutil.cpp
+++ b/library/backend/stringutil.cpp
@@ -63,3 +63,3 @@ static const char collationHack[] = {
0x1b, //C-[
-0x1c, //C-\
+0x1c, /* C-\ */
0x1d, //C-]
@@ -67,3 +67,3 @@ static const char collationHack[] = {
0x1f, //C-_
-' ', //
+' ', //
'!', //!
@@ -127,3 +127,3 @@ static const char collationHack[] = {
'[', //[
-'\\', //\
+'\\', /* \ */
']', //]
@@ -191,3 +191,3 @@ static const char collationHack[] = {
0x9b, //C-M-[
-0x9c, //C-M-\
+0x9c, /* C-M-\ */
0x9d, //C-M-]
@@ -321,3 +321,3 @@ QString buildSortKey( const QString & s1, const QString & s2 )
-QString buildSortKey( const QString & s1, const QString & s2,
+QString buildSortKey( const QString & s1, const QString & s2,
const QString & s3 )
@@ -339,3 +339,3 @@ int compare( const QString & s1, const QString & s2 )
const QChar* u2 = s2.unicode();
-
+
if ( u1 == u2 )