diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-06-05 16:51:27 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-06-05 16:51:27 +0900 |
commit | 9ce89177d3d30a26a4bb5778b007ff73846e510e (patch) | |
tree | 35bac861ce9c8daeba0987e6efea88d5799e42c8 | |
parent | 2bb241ccc1ad8d095c9bf20718c0d7f837709cb7 (diff) | |
download | tdeutils-9ce89177d3d30a26a4bb5778b007ff73846e510e.tar.gz tdeutils-9ce89177d3d30a26a4bb5778b007ff73846e510e.zip |
Fixed KSim configuration dialog help button functionality. This resolves bug 1866.
-rw-r--r-- | ksim/ksim.cpp | 2 | ||||
-rw-r--r-- | ksim/ksimpref.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ksim/ksim.cpp b/ksim/ksim.cpp index 1f7ca58..4d70777 100644 --- a/ksim/ksim.cpp +++ b/ksim/ksim.cpp @@ -110,7 +110,7 @@ void KSim::PanelExtension::about() void KSim::PanelExtension::help() { - kapp->invokeHelp( TQString(), "ksim" ); + kapp->invokeHelp(TQString::null, "ksim"); } void KSim::PanelExtension::preferences() diff --git a/ksim/ksimpref.cpp b/ksim/ksimpref.cpp index 871f3b0..52fe424 100644 --- a/ksim/ksimpref.cpp +++ b/ksim/ksimpref.cpp @@ -44,6 +44,7 @@ KSim::ConfigDialog::ConfigDialog(KSim::Config *config, resize(466, 363); setShowIconsInTreeList(true); setRootIsDecorated(false); + setHelp(TQString::null, "ksim"); m_config = config; |