diff options
author | Slávek Banko <[email protected]> | 2016-09-03 17:50:57 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2016-09-03 17:51:09 +0200 |
commit | 2429f619a24cbc8fcbd9f55f0fe3a57c76cef8da (patch) | |
tree | adfb5ec3efc1de4ccfad5d7a4c782bddb4168af2 | |
parent | 9dc2d8e7291ce6a1f7fd505643305f6dac2d6b2e (diff) | |
download | bibletime-2429f619a24cbc8fcbd9f55f0fe3a57c76cef8da.tar.gz bibletime-2429f619a24cbc8fcbd9f55f0fe3a57c76cef8da.zip |
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 6ba476df60258b2875d95a7188ddd922d302cec9)
-rw-r--r-- | bibletime/frontend/mainindex/cmainindex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bibletime/frontend/mainindex/cmainindex.cpp b/bibletime/frontend/mainindex/cmainindex.cpp index 24f297a..1d34659 100644 --- a/bibletime/frontend/mainindex/cmainindex.cpp +++ b/bibletime/frontend/mainindex/cmainindex.cpp @@ -228,7 +228,7 @@ void CMainIndex::slotExecuted( TQListViewItem* i ) { /** Reimplementation. Returns the drag object for the current selection. */ TQDragObject* CMainIndex::dragObject() { if (!m_itemsMovable) { - return false; + return 0; } CDragDropMgr::ItemList dndItems; |