By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 621
Collapse All | Expand All

(-)/dev/shm/kdelibs/kcmshell/main.cpp (-1 / +1 lines)
Lines 198-204 Link Here
198
198
199
extern "C" KDE_EXPORT int kdemain(int _argc, char *_argv[])
199
extern "C" KDE_EXPORT int kdemain(int _argc, char *_argv[])
200
{
200
{
201
    KAboutData aboutData( "kcmshell", I18N_NOOP("KDE Control Module"),
201
    KAboutData aboutData( "kcmshell", I18N_NOOP("TDE Control Module"),
202
                          0,
202
                          0,
203
                          I18N_NOOP("A tool to start single KDE control modules"),
203
                          I18N_NOOP("A tool to start single KDE control modules"),
204
                          KAboutData::License_GPL,
204
                          KAboutData::License_GPL,
(-)/dev/shm/kdelibs/kdecore/README.kiosk (-1 / +1 lines)
Lines 607-613 Link Here
607
be available to applications. A better way is to use the control
607
be available to applications. A better way is to use the control
608
module restrictions offered by KIOSK:
608
module restrictions offered by KIOSK:
609
609
610
[KDE Control Module Restrictions][$i]
610
[TDE Control Module Restrictions][$i]
611
<menu-id>=false
611
<menu-id>=false
612
612
613
Some example menu-ids are:
613
Some example menu-ids are:
(-)/dev/shm/kdelibs/kdecore/kapplication.cpp (-2 / +2 lines)
Lines 3351-3364 Link Here
3351
   if (menuId.isEmpty() || kde_kiosk_exception)
3351
   if (menuId.isEmpty() || kde_kiosk_exception)
3352
      return true;
3352
      return true;
3353
   KConfig *config = KGlobal::config();
3353
   KConfig *config = KGlobal::config();
3354
   KConfigGroupSaver saver( config, "KDE Control Module Restrictions" );
3354
   KConfigGroupSaver saver( config, "TDE Control Module Restrictions" );
3355
   return config->readBoolEntry(menuId, true);
3355
   return config->readBoolEntry(menuId, true);
3356
}
3356
}
3357
3357
3358
TQStringList KApplication::authorizeControlModules(const TQStringList &menuIds)
3358
TQStringList KApplication::authorizeControlModules(const TQStringList &menuIds)
3359
{
3359
{
3360
   KConfig *config = KGlobal::config();
3360
   KConfig *config = KGlobal::config();
3361
   KConfigGroupSaver saver( config, "KDE Control Module Restrictions" );
3361
   KConfigGroupSaver saver( config, "TDE Control Module Restrictions" );
3362
   TQStringList result;
3362
   TQStringList result;
3363
   for(TQStringList::ConstIterator it = menuIds.begin();
3363
   for(TQStringList::ConstIterator it = menuIds.begin();
3364
       it != menuIds.end(); ++it)
3364
       it != menuIds.end(); ++it)
(-)/dev/shm/kdelibs/kio/kcmodule.desktop (-1 / +1 lines)
Lines 1-7 Link Here
1
[Desktop Entry]
1
[Desktop Entry]
2
Type=ServiceType
2
Type=ServiceType
3
X-KDE-ServiceType=KCModule
3
X-KDE-ServiceType=KCModule
4
Name=KDE Control Module
4
Name=TDE Control Module
5
Name[af]=KDE Beheer Module
5
Name[af]=KDE Beheer Module
6
Name[ar]=وحدة تحكم كيدي
6
Name[ar]=وحدة تحكم كيدي
7
Name[az]=KDE İdarə Modulu
7
Name[az]=KDE İdarə Modulu

Return to bug 621