summaryrefslogtreecommitdiffstats
path: root/kviewshell/zoom.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-08-02 19:23:46 +0000
commiteba47f8f0637f451e21348187591e1f1fd58ac74 (patch)
tree448f10b95c656604acc331a3236c1e59bde5c1ad /kviewshell/zoom.h
parentc7e8736c69373f48b0401319757c742e8607431a (diff)
downloadtdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz
tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/zoom.h')
-rw-r--r--kviewshell/zoom.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kviewshell/zoom.h b/kviewshell/zoom.h
index 985e18a9..b6108d05 100644
--- a/kviewshell/zoom.h
+++ b/kviewshell/zoom.h
@@ -11,8 +11,8 @@
#ifndef ZOOM_H
#define ZOOM_H
-#include <qobject.h>
-#include <qstringlist.h>
+#include <tqobject.h>
+#include <tqstringlist.h>
class Zoom : public QObject
@@ -26,7 +26,7 @@ public:
/** Returns a list like "33%", "100%", etc. If you call
zoomNames() more than once, it is guaranteed that the same
list of strings will be returned. */
- QStringList zoomNames() const { return valueNames; }
+ TQStringList zoomNames() const { return valueNames; }
float zoomIn();
float zoomOut();
@@ -34,21 +34,21 @@ public:
public slots:
void setZoomValue(float);
- void setZoomValue(const QString &);
+ void setZoomValue(const TQString &);
void setZoomFitWidth(float zoom);
void setZoomFitHeight(float zoom);
void setZoomFitPage(float zoom);
signals:
- void zoomNamesChanged(const QStringList &);
- void zoomNameChanged(const QString &);
+ void zoomNamesChanged(const TQStringList &);
+ void zoomNameChanged(const TQString &);
void valNoChanged(int);
private:
float _zoomValue;
- QStringList valueNames;
- // This will be the number of the current value in the generated QStringList.
+ TQStringList valueNames;
+ // This will be the number of the current value in the generated TQStringList.
int valNo;
};