blob: 897ebbb1fc963c5e51610ab70e25b797c2f5c085 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- src/svnqt/log_entry.cpp.orig Sat Apr 29 00:36:34 2006
+++ src/svnqt/log_entry.cpp Sat Apr 29 00:37:18 2006
@@ -93,8 +93,8 @@
}
revision = revision_;
- author = author_ == 0 ? "" : QString::fromUtf8(author_);
- message = message_ == 0 ? "" : QString::fromUtf8(message_);
+ author = author_ == 0 ? QString::fromLatin1("") : QString::fromUtf8(author_);
+ message = message_ == 0 ? QString::fromLatin1("") : QString::fromUtf8(message_);
}
}
|