diff options
Diffstat (limited to 'tdecore')
-rw-r--r-- | tdecore/README.kiosk | 2 | ||||
-rw-r--r-- | tdecore/kapplication.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tdecore/README.kiosk b/tdecore/README.kiosk index 351173231..38a59a929 100644 --- a/tdecore/README.kiosk +++ b/tdecore/README.kiosk @@ -607,7 +607,7 @@ Center by editing the menu structure, such modules will then still be available to applications. A better way is to use the control module restrictions offered by KIOSK: -[KDE Control Module Restrictions][$i] +[TDE Control Module Restrictions][$i] <menu-id>=false Some example menu-ids are: diff --git a/tdecore/kapplication.cpp b/tdecore/kapplication.cpp index 38ee6190a..ea16f00f8 100644 --- a/tdecore/kapplication.cpp +++ b/tdecore/kapplication.cpp @@ -3352,14 +3352,14 @@ bool KApplication::authorizeControlModule(const TQString &menuId) if (menuId.isEmpty() || kde_kiosk_exception) return true; KConfig *config = KGlobal::config(); - KConfigGroupSaver saver( config, "KDE Control Module Restrictions" ); + KConfigGroupSaver saver( config, "TDE Control Module Restrictions" ); return config->readBoolEntry(menuId, true); } TQStringList KApplication::authorizeControlModules(const TQStringList &menuIds) { KConfig *config = KGlobal::config(); - KConfigGroupSaver saver( config, "KDE Control Module Restrictions" ); + KConfigGroupSaver saver( config, "TDE Control Module Restrictions" ); TQStringList result; for(TQStringList::ConstIterator it = menuIds.begin(); it != menuIds.end(); ++it) |