summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/cprofilewindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/cprofilewindow.cpp')
-rw-r--r--bibletime/frontend/cprofilewindow.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/bibletime/frontend/cprofilewindow.cpp b/bibletime/frontend/cprofilewindow.cpp
index 142dd41..fbaf4de 100644
--- a/bibletime/frontend/cprofilewindow.cpp
+++ b/bibletime/frontend/cprofilewindow.cpp
@@ -17,7 +17,7 @@ CProfileWindow::CProfileWindow(CSwordModuleInfo::ModuleType type)
: m_type(type),
m_windowGeometry(),
m_moduleList(),
-m_key(QString::null),
+m_key(TQString::null),
m_maximized(false),
m_hasFocus(false),
m_windowSettings(0),
@@ -29,12 +29,12 @@ m_writeWindowType(0) {
CProfileWindow::~CProfileWindow() {}
/** Returns the size of the window including the x,y coordinates. */
-const QRect& CProfileWindow::geometry() const {
+const TQRect& CProfileWindow::geometry() const {
return m_windowGeometry;
}
/** Sets the size of the window. */
-void CProfileWindow::setGeometry( const QRect& rect ) {
+void CProfileWindow::setGeometry( const TQRect& rect ) {
m_windowGeometry = rect;
}
@@ -46,22 +46,22 @@ const CSwordModuleInfo::ModuleType CProfileWindow::type() const {
}
/** Sets the modules. */
-void CProfileWindow::setModules( const QStringList& modules ) {
+void CProfileWindow::setModules( const TQStringList& modules ) {
m_moduleList = modules; //copy module pointers into our own list
}
/** Returns a list of module names which are chosen in the managed window profile. */
-const QStringList& CProfileWindow::modules() const {
+const TQStringList& CProfileWindow::modules() const {
return m_moduleList;
}
/** Returns the current key set in the modules. */
-const QString& CProfileWindow::key() const {
+const TQString& CProfileWindow::key() const {
return m_key;
}
/** Set the key used in the modules. */
-void CProfileWindow::setKey( const QString& key ) {
+void CProfileWindow::setKey( const TQString& key ) {
m_key = key;
}