diff options
Diffstat (limited to 'korn/dcop_proto.h')
-rw-r--r-- | korn/dcop_proto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/korn/dcop_proto.h b/korn/dcop_proto.h index a485e08d8..18e01e997 100644 --- a/korn/dcop_proto.h +++ b/korn/dcop_proto.h @@ -23,7 +23,7 @@ #include "protocol.h" class AccountInput; -class KConfigGroup; +class TDEConfigGroup; class KIO_Protocol; class KMailDrop; class Protocol; @@ -60,19 +60,19 @@ public: * This function returns a Protocol pointer given a configuration. * This function always returns itselfs, as the configuration never uses another protocol. */ - virtual const Protocol* getProtocol( KConfigGroup* ) const { return this; } + virtual const Protocol* getProtocol( TDEConfigGroup* ) const { return this; } /** * This function creates the maildrop used to count dcop-messages. * @param config The configuration */ - virtual KMailDrop* createMaildrop( KConfigGroup* config ) const; + virtual KMailDrop* createMaildrop( TDEConfigGroup* config ) const; /** * The function converts the information of the configuration file into a mapping. * * @param config The configuration instance to be mapped * @return The keys and values of the configuration in a mapping */ - virtual TQMap< TQString, TQString > * createConfig( KConfigGroup* config, const TQString& passwd ) const; + virtual TQMap< TQString, TQString > * createConfig( TDEConfigGroup* config, const TQString& passwd ) const; /** * This return the name of this protocol. It is always "dcop". * @return The name of this protocol: "dcop" |