summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/gdbbreakpointwidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-14 16:45:05 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-14 16:45:05 +0000
commit48d4a26399959121f33d2bc3bfe51c7827b654fc (patch)
tree5ae5e6e00d3ba330b7b8be9bc097154b6bc739e8 /languages/cpp/debugger/gdbbreakpointwidget.h
parent7e701ace6592d09e1f2c0cf28c7d6d872d78f4f5 (diff)
downloadtdevelop-48d4a26399959121f33d2bc3bfe51c7827b654fc.tar.gz
tdevelop-48d4a26399959121f33d2bc3bfe51c7827b654fc.zip
TQt4 port kdevelop
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1236710 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/cpp/debugger/gdbbreakpointwidget.h')
-rw-r--r--languages/cpp/debugger/gdbbreakpointwidget.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/languages/cpp/debugger/gdbbreakpointwidget.h b/languages/cpp/debugger/gdbbreakpointwidget.h
index c0728dec..f67bb03e 100644
--- a/languages/cpp/debugger/gdbbreakpointwidget.h
+++ b/languages/cpp/debugger/gdbbreakpointwidget.h
@@ -41,13 +41,14 @@ class BreakpointTableRow;
class GDBTable;
class GDBController;
-class GDBBreakpointWidget : public QHBox
+class GDBBreakpointWidget : public TQHBox
{
Q_OBJECT
+ TQ_OBJECT
public:
GDBBreakpointWidget( GDBController* controller,
- TQWidget* parent=0, const char* name=0 );
+ TQWidget* tqparent=0, const char* name=0 );
virtual ~GDBBreakpointWidget();
void reset();
@@ -105,7 +106,7 @@ signals:
void tracingOutput(const char*);
private:
- BreakpointTableRow* find(Breakpoint *bp);
+ BreakpointTableRow* tqfind(Breakpoint *bp);
BreakpointTableRow* findId(int id);
BreakpointTableRow* findKey(int BPKey);
@@ -135,14 +136,15 @@ class BreakpointTableRow;
When editing is done, the receiver of 'edit' should change the
value in the table, and then call the 'updateValue' method.
*/
-class ComplexEditCell : public TQObject, public QTableItem
+class ComplexEditCell : public TQObject, public TQTableItem
{
Q_OBJECT
+ TQ_OBJECT
public:
ComplexEditCell(TQTable* table);
- /** Called by Qt when the current cell should become editable.
+ /** Called by TQt when the current cell should become editable.
In our case, when the item becomes current. Creates a widget
that will be shown in the cell and should be able to edit cell
content. In our case -- text plus "..." button that invokes