summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/display/creaddisplay.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/frontend/display/creaddisplay.h')
-rw-r--r--bibletime/frontend/display/creaddisplay.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/bibletime/frontend/display/creaddisplay.h b/bibletime/frontend/display/creaddisplay.h
index de3e51d..48ce7b0 100644
--- a/bibletime/frontend/display/creaddisplay.h
+++ b/bibletime/frontend/display/creaddisplay.h
@@ -15,8 +15,8 @@
#include "cdisplay.h"
#include "backend/cswordbackend.h"
-class QPopupMenu;
-class QWidget;
+class TQPopupMenu;
+class TQWidget;
/**The base class for all read-only widgets like KHTMLView.
*@author The BibleTime team
@@ -31,11 +31,11 @@ public:
/**
* Returns the current active anchor.
*/
- const QString& activeAnchor();
+ const TQString& activeAnchor();
/**
* Moves the widget to the given anchor.
*/
- virtual void moveToAnchor( const QString& ) = 0;
+ virtual void moveToAnchor( const TQString& ) = 0;
virtual void print(const CDisplay::TextPart, CSwordBackend::DisplayOptions displayOptions, CSwordBackend::FilterOptions filterOptions);
void setMouseTracking(const bool trackingEnabled) {
@@ -56,14 +56,14 @@ protected: // Protected methods
/**
* Sets the current anchor to the parameter.
*/
- void setActiveAnchor( const QString& );
+ void setActiveAnchor( const TQString& );
private: // Public attributes
/**
* The member which hols the current anchor.
*/
- QString m_activeAnchor;
+ TQString m_activeAnchor;
bool m_useMouseTracking;
};