blob: 28dfe4d45f30ae9696afbcec9e39d2fcb6b06908 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/svnqt/dirent.cpp.orig Fri Apr 28 16:50:10 2006
+++ src/svnqt/dirent.cpp Fri Apr 28 16:50:28 2006
@@ -54,7 +54,7 @@
hasProps (dirEntry->has_props != 0),
createdRev (dirEntry->created_rev), time (dirEntry->time), m_Lock()
{
- lastAuthor = dirEntry->last_author == 0 ? "" : QString::FROMUTF8(dirEntry->last_author);
+ lastAuthor = dirEntry->last_author == 0 ? QString::fromLatin1("") : QString::FROMUTF8(dirEntry->last_author);
}
Data (const DirEntry & src)
|