summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-27 01:17:08 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-04-27 01:17:08 +0000
commit98fdf3c14619cfe6b5547c941bcbf8ecd4315e3b (patch)
tree219457786427453b2d7685828fb6bcd77fc5a6d2 /src
parent7a741e43ff09e70396a918956219b8316c48e522 (diff)
downloaddolphin-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')
-rw-r--r--src/dolphin.cpp2
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)) {