summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cprofilemgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/cprofilemgr.h')
-rw-r--r--bibletime/frontend/cprofilemgr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/bibletime/frontend/cprofilemgr.h b/bibletime/frontend/cprofilemgr.h
index b1f55d9..aba6675 100644
--- a/bibletime/frontend/cprofilemgr.h
+++ b/bibletime/frontend/cprofilemgr.h
@@ -15,7 +15,7 @@
#include "cprofile.h"
//Qt includes
-#include <qstring.h>
+#include <tqstring.h>
namespace Profile {
/** The manager for profiles.
@@ -30,11 +30,11 @@ public:
/** Creates a new profile with the name "name" (first parameter).
* @return The profile object
*/
- CProfile* create( const QString name );
+ CProfile* create( const TQString name );
/**
* @return a list of available profiles
*/
- const QPtrList<CProfile>& profiles();
+ const TQPtrList<CProfile>& profiles();
/**
* Removes the profile from the list and from the directory containg the profile files.
*/
@@ -44,11 +44,11 @@ public:
* Removes the profile from the list and from the directory containg the profile files.
*/
const bool remove
- ( const QString& );
+ ( const TQString& );
/**
* Returns the profile with the desired name. If there's no such profile 0 is returned.
*/
- CProfile* profile(const QString&);
+ CProfile* profile(const TQString&);
/**
* Returns the startup profile if it exists, otherwise return 0.
*/
@@ -59,8 +59,8 @@ public:
void refresh();
protected:
- QPtrList<CProfile> m_profiles;
- QString m_profilePath;
+ TQPtrList<CProfile> m_profiles;
+ TQString m_profilePath;
CProfile* m_startupProfile;
};