From kde-commits Thu Sep 09 21:05:25 2004 From: Frans Englich Date: Thu, 09 Sep 2004 21:05:25 +0000 To: kde-commits Subject: kdelibs/kdeui Message-Id: <20040909210525.AE9D9DD6 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109476393503533 CVS commit by englich: Add getter for the KConfigDialogManager list. M +5 -0 kcmodule.cpp 1.28 M +6 -0 kcmodule.h 1.51 --- kdelibs/kdeui/kcmodule.cpp #1.27:1.28 @@ -173,4 +173,9 @@ QString KCModule::quickHelp() const +QPtrList KCModule::configs() const +{ + return d->managers; +} + void KCModule::virtual_hook( int, void* ) { /*BASE::virtual_hook( id, data );*/ } --- kdelibs/kdeui/kcmodule.h #1.50:1.51 @@ -228,4 +228,10 @@ public: KInstance *instance() const; + /** + * @return a list of @ref KConfigDialogManager's in use, if any. + * @since 3.4 + */ + QPtrList configs() const; + protected: /**