diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 01:17:08 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-04-27 01:17:08 +0000 |
commit | 98fdf3c14619cfe6b5547c941bcbf8ecd4315e3b (patch) | |
tree | 219457786427453b2d7685828fb6bcd77fc5a6d2 /src/dolphin.cpp | |
parent | 7a741e43ff09e70396a918956219b8316c48e522 (diff) | |
download | dolphin-98fdf3c14619cfe6b5547c941bcbf8ecd4315e3b.tar.gz dolphin-98fdf3c14619cfe6b5547c941bcbf8ecd4315e3b.zip |
Fix FTBFS
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/dolphin@1229360 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/dolphin.cpp')
-rw-r--r-- | src/dolphin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphin.cpp b/src/dolphin.cpp index 2b8ddb8..0fbba54 100644 --- a/src/dolphin.cpp +++ b/src/dolphin.cpp @@ -431,7 +431,7 @@ void Dolphin::createFile() KSortableValueList<CreateFileEntry, TQString>::ConstIterator it = m_createFileTemplates.begin(); KSortableValueList<CreateFileEntry, TQString>::ConstIterator end = m_createFileTemplates.end(); - const TQString senderName(TQT_TQOBJECT(sender())->name()); + const TQString senderName(TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))->name()); bool found = false; CreateFileEntry entry; while (!found && (it != end)) { |