summaryrefslogtreecommitdiffstats
path: root/kbugbuster
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-08 20:44:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-08 23:04:28 +0900
commit737adcefbfa3dd66bcba31656ba33766c347c529 (patch)
tree321d8db88c96ceff680ff7d33b2e2a972e33face /kbugbuster
parenta2e9e963508ed60b588c4e4a3d2c0384ccdca872 (diff)
downloadtdesdk-master.tar.gz
tdesdk-master.zip
Remove use of KDE_IS_VERSIONHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbugbuster')
-rw-r--r--kbugbuster/gui/cwbuglistcontainer.cpp2
-rw-r--r--kbugbuster/gui/kbbmainwindow.cpp10
2 files changed, 0 insertions, 12 deletions
diff --git a/kbugbuster/gui/cwbuglistcontainer.cpp b/kbugbuster/gui/cwbuglistcontainer.cpp
index a4607581..859c8bee 100644
--- a/kbugbuster/gui/cwbuglistcontainer.cpp
+++ b/kbugbuster/gui/cwbuglistcontainer.cpp
@@ -24,9 +24,7 @@
#include <tdelistview.h>
#include <tdelocale.h>
#include <kdialog.h>
-#if KDE_IS_VERSION( 3, 2, 90 )
#include <tdelistviewsearchline.h>
-#endif
#include <kdebug.h>
#include "bugsystem.h"
diff --git a/kbugbuster/gui/kbbmainwindow.cpp b/kbugbuster/gui/kbbmainwindow.cpp
index 57c1ec30..ed345137 100644
--- a/kbugbuster/gui/kbbmainwindow.cpp
+++ b/kbugbuster/gui/kbbmainwindow.cpp
@@ -199,10 +199,8 @@ void KBBMainWindow::initActions()
TQ_SLOT( replyPrivateBug() ), actionCollection(), "cmd_replyprivate" );
KStdAction::showMenubar(this, TQ_SLOT( slotToggleMenubar() ), actionCollection() );
-#if KDE_IS_VERSION( 3, 1, 90 )
createStandardStatusBarAction();
setStandardToolBarMenuEnabled(true);
-#endif
m_disconnectedAction = new TDEToggleAction( i18n("&Disconnected Mode"), 0,
this,
@@ -219,16 +217,12 @@ void KBBMainWindow::initActions()
TDEToggleAction *toggleTmp = new TDEToggleAction( i18n("Show Closed Bugs"), "application-x-trash", 0, this, TQ_SLOT( slotToggleDone() ),
actionCollection(), "cmd_toggle_done" );
-#if KDE_IS_VERSION( 3, 2, 90 )
toggleTmp->setCheckedState(i18n("Hide Closed Bugs"));
-#endif
toggleTmp->setChecked( KBBPrefs::instance()->mShowClosedBugs );
toggleTmp =new TDEToggleAction( i18n("Show Wishes"), "bookmark", 0, this, TQ_SLOT( slotToggleWishes() ),
actionCollection(), "cmd_toggle_wishes" );
-#if KDE_IS_VERSION( 3, 2, 90 )
toggleTmp->setCheckedState(i18n("Hide Wishes"));
-#endif
toggleTmp->setChecked(KBBPrefs::instance()->mShowWishes);
mSelectServerAction = new TDESelectAction( i18n( "Select Server" ), 0, 0,
@@ -248,11 +242,7 @@ void KBBMainWindow::initActions()
"debug_showbugsource" );
}
-#if KDE_IS_VERSION( 3, 2, 90 )
setupGUI( (ToolBar | Keys | StatusBar | Save | Create ), "kbugbusterui.rc" );
-#else
- createGUI();
-#endif
}
void KBBMainWindow::slotToggleMenubar()