diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-18 20:13:23 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-18 20:13:23 +0200 |
commit | 5eb938208e3ef0f9c2d8aecde27d03cd4564e255 (patch) | |
tree | 0b186abb7b29f62bdddf3a15091deb0a348ccbe8 /src/filterdialog.cpp | |
parent | 0c697cf4f9189055d5233ee58a4a9e69380bdb8e (diff) | |
download | tellico-5eb938208e3ef0f9c2d8aecde27d03cd4564e255.tar.gz tellico-5eb938208e3ef0f9c2d8aecde27d03cd4564e255.zip |
Fix build with KDE_DEFAULT_CXXFLAGS
Fix FTBFS with GCC6
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/filterdialog.cpp')
-rw-r--r-- | src/filterdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filterdialog.cpp b/src/filterdialog.cpp index 8d0a877..ab9677c 100644 --- a/src/filterdialog.cpp +++ b/src/filterdialog.cpp @@ -113,7 +113,7 @@ void FilterRuleWidget::slotEditRegExp() { TQString(), TQT_TQOBJECT(this)); } - KRegExpEditorInterface* iface = static_cast<KRegExpEditorInterface *>(m_editRegExpDialog->tqt_cast(TQString::fromLatin1("KRegExpEditorInterface"))); + KRegExpEditorInterface* iface = static_cast<KRegExpEditorInterface *>(m_editRegExpDialog->tqt_cast("KRegExpEditorInterface")); if(iface) { iface->setRegExp(m_ruleValue->text()); if(m_editRegExpDialog->exec() == TQDialog::Accepted) { |