diff options
author | Slávek Banko <[email protected]> | 2023-08-15 19:00:08 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2023-08-15 19:00:08 +0200 |
commit | 17118265cf93b35b0b68e450ea5f43046c1d81c3 (patch) | |
tree | 0bbf4dfa44cab001ead783055110f529a1874ba4 /src/modules | |
parent | 3ec2ac7ee5d10c5bbc2d4d1af67c5be874f985a5 (diff) | |
download | kvirc-17118265cf93b35b0b68e450ea5f43046c1d81c3.tar.gz kvirc-17118265cf93b35b0b68e450ea5f43046c1d81c3.zip |
Fix FTBFS from issue #9.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/options/instances.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/options/instances.cpp b/src/modules/options/instances.cpp index a91cf149..d08b7a2a 100644 --- a/src/modules/options/instances.cpp +++ b/src/modules/options/instances.cpp @@ -3489,7 +3489,7 @@ void KviOptionsInstanceManager::cleanup(KviModule * m) void KviOptionsInstanceManager::widgetDestroyed() { - KviOptionsWidgetInstanceEntry * e = findInstanceEntry(TQT_TQOBJECT(sender()),m_pInstanceTree); + KviOptionsWidgetInstanceEntry * e = findInstanceEntry(sender(),m_pInstanceTree); if(e)e->pWidget = 0; if(g_iOptionWidgetInstances > 0)g_iOptionWidgetInstances--; |