diff options
author | Chris <xchrisx@uber.space> | 2019-07-27 13:41:48 +0200 |
---|---|---|
committer | Chris <xchrisx@uber.space> | 2019-07-27 13:41:48 +0200 |
commit | 4a476f2edc9ae33038c75f18de9ad14c625d16c9 (patch) | |
tree | 9f7c26ead7e8f9d9d1929e0343378c5b1d271a5e | |
parent | 6a64a07fc335194cb9bec05aa4a9b95dbd1fceff (diff) | |
download | kiosktool-branding/fix_kde_version.tar.gz kiosktool-branding/fix_kde_version.zip |
Remove "minimum version of KDE needed" check of Kiosktool.branding/fix_kde_version
Signed-off-by: Chris <xchrisx@uber.space>
-rw-r--r-- | kiosktool/main.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/kiosktool/main.cpp b/kiosktool/main.cpp index 94918e5..6d2d365 100644 --- a/kiosktool/main.cpp +++ b/kiosktool/main.cpp @@ -61,19 +61,6 @@ int main(int argc, char *argv[]) a.setMainWidget(w); w->show(); - bool versionOk; - if (TQFile::exists("/etc/SuSE-release")) - versionOk = KDE::version() >= TDE_MAKE_VERSION(3,2,1); - else - versionOk = KDE::version() >= TDE_MAKE_VERSION(3,2,2); - - if (!versionOk) - { - KMessageBox::information(w, i18n("<qt>KIOSK Admin Tool requires KDE 3.2.2 or later!<p>" - "With older versions you may experience problems with" - "the <i>Setup</i> functionality of the various components.")); - } - kapp->exec(); return 0; |