summaryrefslogtreecommitdiffstats
path: root/ksayit/src/ksayit.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-17 22:17:08 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-17 22:17:08 +0000
commitf138d74fe16092003b06f5bde9663841929cde7f (patch)
treee9c497a0e59bc7d34264ac9404740d2ea76f3de4 /ksayit/src/ksayit.h
parent3a3c4b256baee79bdcfe72c5e01b9ded9b525900 (diff)
downloadtdeaccessibility-f138d74fe16092003b06f5bde9663841929cde7f.tar.gz
tdeaccessibility-f138d74fe16092003b06f5bde9663841929cde7f.zip
TQt4 port kdeaccessibility
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1237325 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksayit/src/ksayit.h')
-rw-r--r--ksayit/src/ksayit.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/ksayit/src/ksayit.h b/ksayit/src/ksayit.h
index fc8fef9..bf1e672 100644
--- a/ksayit/src/ksayit.h
+++ b/ksayit/src/ksayit.h
@@ -24,7 +24,7 @@
using namespace std;
-// include files for Qt
+// include files for TQt
#include <tqstringlist.h>
#include <tqclipboard.h>
@@ -68,12 +68,13 @@ class KSayItBookmarkHandler;
class KSayItApp : public KMainWindow, public DCOPObject
{
Q_OBJECT
+// TQ_OBJECT
K_DCOP
public:
/** construtor of KSayItApp, calls all init functions to create the application.
*/
- KSayItApp(TQWidget* parent=0, const char* name=0, WFlags f=0,
+ KSayItApp(TQWidget* tqparent=0, const char* name=0, WFlags f=0,
const TQCString &objID=0);
~KSayItApp();
@@ -114,7 +115,7 @@ private slots:
*/
void slotTreeViewChanged(const TQString &str);
- /** save general Options like all bar positions and status as well as the geometry to
+ /** save general Options like all bar positions and status as well as the tqgeometry to
* the configuration file.
*/
void slotSaveOptions();
@@ -265,7 +266,7 @@ public:
* Selects the item with the given ID in the TreeView.
* \param ID The ID of the item to select.
* \param title The title of the bookmark.
- * \returns <tt>TQString::null</tt>, if the operation was successfull,
+ * \returns <tt>TQString()</tt>, if the operation was successfull,
* an error message, if the ID was not found.
*/
TQString setItemByBookmark( const TQString &ID, const TQString &title );
@@ -315,7 +316,7 @@ private: // Methods
* \p ksayit/ksayit_bookmarks/.
* \param filename The name of the bookmark file.
* \returns The absolute pathname of the given bookmark file.
- * Returns \p TQString::null if the operation was not successfull.
+ * Returns \p TQString() if the operation was not successfull.
*/
TQString getBookmarkDir(const TQString &filename);
@@ -349,7 +350,7 @@ private:
KActionMenu *bookmarkmenu;
// Misc stuff
- QClipboard *cb;
+ TQClipboard *cb;
TQString clip;
KTTSDLib *m_kttslib;
FXPluginHandler *m_fxpluginhandler;