summaryrefslogtreecommitdiffstats
path: root/languages/sql/sqlactions.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/sql/sqlactions.h')
-rw-r--r--languages/sql/sqlactions.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/languages/sql/sqlactions.h b/languages/sql/sqlactions.h
index 8cc7b5df..ff71ae54 100644
--- a/languages/sql/sqlactions.h
+++ b/languages/sql/sqlactions.h
@@ -9,23 +9,24 @@
* *
***************************************************************************/
-#ifndef _SQLACTION_H_
-#define _SQLACTION_H_
+#ifndef _STQLACTION_H_
+#define _STQLACTION_H_
#include <kdeversion.h>
#include <kxmlguiclient.h>
#include <kaction.h>
-class SQLSupportPart;
+class STQLSupportPart;
class KComboBox;
class SqlListAction : public KWidgetAction
{
Q_OBJECT
+ TQ_OBJECT
public:
- SqlListAction( SQLSupportPart *part, const TQString &text, const KShortcut& cut,
+ SqlListAction( STQLSupportPart *part, const TQString &text, const KShortcut& cut,
const TQObject *receiver, const char *slot,
- KActionCollection *parent, const char *name );
+ KActionCollection *tqparent, const char *name );
void setCurrentConnectionName(const TQString &name);
TQString currentConnectionName() const;
void refresh();
@@ -34,7 +35,7 @@ private slots:
void activated(int);
private:
- SQLSupportPart *m_part;
+ STQLSupportPart *m_part;
KComboBox* m_combo;
};