summaryrefslogtreecommitdiffstats
path: root/src/theme.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theme.h')
-rw-r--r--src/theme.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/theme.h b/src/theme.h
index fae0f45..c1f181c 100644
--- a/src/theme.h
+++ b/src/theme.h
@@ -20,8 +20,8 @@
#ifndef BOOKREADER_THEME_H
#define BOOKREADER_THEME_H
-#include <qstring.h>
-#include <qpixmap.h>
+#include <tqstring.h>
+#include <tqpixmap.h>
class Theme
@@ -29,18 +29,18 @@ class Theme
public:
static Theme * self();
/// \brief Loads theme with given name. Default is "default". :)
- void loadTheme(const QString& name = "default");
- const QPixmap & bgPixmap(QSize size = QSize(0,0)) const;
- const QPixmap & bookmarkPixmap() const { return m_bookmarkPixmap; }
- //const QFont & font() const {return m_font;}
+ void loadTheme(const TQString& name = "default");
+ const TQPixmap & bgPixmap(TQSize size = TQSize(0,0)) const;
+ const TQPixmap & bookmarkPixmap() const { return m_bookmarkPixmap; }
+ //const TQFont & font() const {return m_font;}
private:
static Theme * theme;
Theme();
Theme(const Theme &);
Theme & operator = (const Theme&);
- QPixmap m_bgPixmap;
- mutable QPixmap m_bgResizedPixmap;
- QPixmap m_bookmarkPixmap;
+ TQPixmap m_bgPixmap;
+ mutable TQPixmap m_bgResizedPixmap;
+ TQPixmap m_bookmarkPixmap;
};
#endif