diff options
Diffstat (limited to 'certmanager/lib/kleo/cryptoconfig.h')
-rw-r--r-- | certmanager/lib/kleo/cryptoconfig.h | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/certmanager/lib/kleo/cryptoconfig.h b/certmanager/lib/kleo/cryptoconfig.h index da16ca5b5..ec0a0ed5d 100644 --- a/certmanager/lib/kleo/cryptoconfig.h +++ b/certmanager/lib/kleo/cryptoconfig.h @@ -91,12 +91,12 @@ namespace Kleo { /** * Return the internal name of this entry */ - virtual QString name() const = 0; + virtual TQString name() const = 0; /** * @return user-visible description of this entry */ - virtual QString description() const = 0; + virtual TQString description() const = 0; /** * @return true if the argument is optional @@ -142,7 +142,7 @@ namespace Kleo { * Return value as a string (available for all argtypes) * The returned string can be empty (explicitely set to empty) or null (not set). */ - virtual QString stringValue() const = 0; + virtual TQString stringValue() const = 0; /** * Return value as a signed int @@ -167,17 +167,17 @@ namespace Kleo { /** * Return value as a list of strings (mostly meaningful for String, Path and URL argtypes, if isList()) */ - virtual QStringList stringValueList() const = 0; + virtual TQStringList stringValueList() const = 0; /** * Return value as a list of signed ints */ - virtual QValueList<int> intValueList() const = 0; + virtual TQValueList<int> intValueList() const = 0; /** * Return value as a list of unsigned ints */ - virtual QValueList<unsigned int> uintValueList() const = 0; + virtual TQValueList<unsigned int> uintValueList() const = 0; /** * Return value as a list of URLs (only meaningful for Path and URL argtypes, if isList()) @@ -198,7 +198,7 @@ namespace Kleo { /** * Set string value (allowed for all argtypes) */ - virtual void setStringValue( const QString& ) = 0; + virtual void setStringValue( const TQString& ) = 0; /** * Set a new signed int value @@ -223,17 +223,17 @@ namespace Kleo { /** * Set a new string-list value (only allowed for String, Path and URL argtypes, if isList()) */ - virtual void setStringValueList( const QStringList& ) = 0; + virtual void setStringValueList( const TQStringList& ) = 0; /** * Set a new list of signed int values */ - virtual void setIntValueList( const QValueList<int>& ) = 0; + virtual void setIntValueList( const TQValueList<int>& ) = 0; /** * Set a new list of unsigned int values */ - virtual void setUIntValueList( const QValueList<unsigned int>& ) = 0; + virtual void setUIntValueList( const TQValueList<unsigned int>& ) = 0; /** * Set value as a URL list (only meaningful for Path (if all URLs are local) and URL argtypes, if isList()) @@ -257,17 +257,17 @@ namespace Kleo { /** * Return the internal name of this group */ - virtual QString name() const = 0; + virtual TQString name() const = 0; /** * Return the name of the icon for this group */ - virtual QString iconName() const = 0; + virtual TQString iconName() const = 0; /** * @return user-visible description of this group */ - virtual QString description() const = 0; + virtual TQString description() const = 0; /** * User level @@ -279,14 +279,14 @@ namespace Kleo { * * @return list of group entry names. **/ - virtual QStringList entryList() const = 0; + virtual TQStringList entryList() const = 0; /** * @return the configuration object for a given entry in this group * The object is owned by CryptoConfigGroup, don't delete it. * Groups cannot be nested, so all entries returned here are pure entries, no groups. */ - virtual CryptoConfigEntry* entry( const QString& name ) const = 0; + virtual CryptoConfigEntry* entry( const TQString& name ) const = 0; }; /** @@ -300,17 +300,17 @@ namespace Kleo { /** * Return the internal name of this component */ - virtual QString name() const = 0; + virtual TQString name() const = 0; /** * Return the name of the icon for this component */ - virtual QString iconName() const = 0; + virtual TQString iconName() const = 0; /** * Return user-visible description of this component */ - virtual QString description() const = 0; + virtual TQString description() const = 0; /** * Returns the list of groups that are known about. @@ -318,13 +318,13 @@ namespace Kleo { * @return list of group names. One of them can be "<nogroup>", which is the group where all * "toplevel" options (belonging to no group) are. */ - virtual QStringList groupList() const = 0; + virtual TQStringList groupList() const = 0; /** * @return the configuration object for a given group * The object is owned by CryptoConfigComponent, don't delete it. */ - virtual CryptoConfigGroup* group( const QString& name ) const = 0; + virtual CryptoConfigGroup* group( const TQString& name ) const = 0; }; @@ -341,13 +341,13 @@ namespace Kleo { * Use @ref component() to retrieve more information about each one. * @return list of component names. **/ - virtual QStringList componentList() const = 0; + virtual TQStringList componentList() const = 0; /** * @return the configuration object for a given component * The object is owned by CryptoConfig, don't delete it. */ - virtual CryptoConfigComponent* component( const QString& name ) const = 0; + virtual CryptoConfigComponent* component( const TQString& name ) const = 0; /** * Convenience method to get hold of a single configuration entry when @@ -357,7 +357,7 @@ namespace Kleo { * @return the configuration object for a single configuration entry, 0 if not found. * The object is owned by CryptoConfig, don't delete it. */ - CryptoConfigEntry* entry( const QString& componentName, const QString& groupName, const QString& entryName ) const { + CryptoConfigEntry* entry( const TQString& componentName, const TQString& groupName, const TQString& entryName ) const { const Kleo::CryptoConfigComponent* comp = component( componentName ); const Kleo::CryptoConfigGroup* group = comp ? comp->group( groupName ) : 0; return group ? group->entry( entryName ) : 0; |