summaryrefslogtreecommitdiffstats
path: root/karm
diff options
context:
space:
mode:
Diffstat (limited to 'karm')
-rw-r--r--karm/CMakeLists.txt2
-rw-r--r--karm/mainwindow.cpp4
-rw-r--r--karm/mainwindow.h2
-rw-r--r--karm/preferences.cpp1
4 files changed, 5 insertions, 4 deletions
diff --git a/karm/CMakeLists.txt b/karm/CMakeLists.txt
index 8c785b2f..a8cdc5a1 100644
--- a/karm/CMakeLists.txt
+++ b/karm/CMakeLists.txt
@@ -55,7 +55,7 @@ tde_add_library( karm SHARED AUTOMOC
csvexportdialog.cpp plannerparser.cpp karmdcopiface.skel
taskviewwhatsthis.cpp
VERSION 0.0.0
- LINK kcal_resourceremote-shared tdeprint-shared
+ LINK kcal_resourceremote-shared tdeprint-shared ${XSS_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)
diff --git a/karm/mainwindow.cpp b/karm/mainwindow.cpp
index 9e530078..c9c2ef6a 100644
--- a/karm/mainwindow.cpp
+++ b/karm/mainwindow.cpp
@@ -47,7 +47,7 @@ MainWindow::MainWindow( const TQString &icsfile )
setCentralWidget( _taskView );
// status bar
- starStatusBar();
+ startStatusBar();
// setup PreferenceDialog.
_preferences = Preferences::instance();
@@ -208,7 +208,7 @@ void MainWindow::updateStatusBar( )
statusBar()->changeItem( i18n("Total: %1" ).arg(time), 1);
}
-void MainWindow::starStatusBar()
+void MainWindow::startStatusBar()
{
statusBar()->insertItem( i18n("Session"), 0, 0, true );
statusBar()->insertItem( i18n("Total" ), 1, 0, true );
diff --git a/karm/mainwindow.h b/karm/mainwindow.h
index c1504e98..0e932484 100644
--- a/karm/mainwindow.h
+++ b/karm/mainwindow.h
@@ -108,7 +108,7 @@ class MainWindow : public KParts::MainWindow, virtual public KarmDCOPIface
// void timeLoggingChanged( bool on );
protected:
- void starStatusBar();
+ void startStatusBar();
virtual void saveProperties( TDEConfig* );
virtual void readProperties( TDEConfig* );
void saveGeometry();
diff --git a/karm/preferences.cpp b/karm/preferences.cpp
index 1307bfef..fbfe2063 100644
--- a/karm/preferences.cpp
+++ b/karm/preferences.cpp
@@ -145,6 +145,7 @@ void Preferences::makeStoragePage()
void Preferences::disableIdleDetection()
{
_doIdleDetectionW->setEnabled(false);
+ _idleDetectValueW->setEnabled(false);
}