summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris <xchrisx@uber.space>2019-12-16 20:39:34 +0100
committerChris <xchrisx@uber.space>2019-12-16 20:39:34 +0100
commitc119edad50acbb8c1c2a67639e74fa31058f83f7 (patch)
tree12e31e453a808e8c82d28d826e374064605e352d
parent3a74e605bbb603903983b5a1caa8b5a8be023555 (diff)
downloadtdenetwork-c119edad50acbb8c1c2a67639e74fa31058f83f7.tar.gz
tdenetwork-c119edad50acbb8c1c2a67639e74fa31058f83f7.zip
Fix obsolete KDE version check for Kopete.
...which resulted in wrong configure entry. Signed-off-by: Chris <xchrisx@uber.space>
-rw-r--r--kopete/libkopete/ui/kopetestdaction.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/kopete/libkopete/ui/kopetestdaction.cpp b/kopete/libkopete/ui/kopetestdaction.cpp
index 55bd73e3..d7730e15 100644
--- a/kopete/libkopete/ui/kopetestdaction.cpp
+++ b/kopete/libkopete/ui/kopetestdaction.cpp
@@ -37,12 +37,10 @@
KSettings::Dialog *KopetePreferencesAction::s_settingsDialog = 0L;
KopetePreferencesAction::KopetePreferencesAction( TDEActionCollection *parent, const char *name )
-#if KDE_IS_VERSION( 3, 3, 90 )
-: TDEAction( KStdGuiItem::configure(), 0, 0, 0, parent, name )
-#else
+
: TDEAction( KGuiItem( i18n( "&Configure Kopete..." ),
TQString::fromLatin1( "configure" ) ), 0, 0, 0, parent, name )
-#endif
+
{
connect( this, TQT_SIGNAL( activated() ), this, TQT_SLOT( slotShowPreferences() ) );
}