summaryrefslogtreecommitdiffstats
path: root/kommander/editor/formwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/formwindow.cpp')
-rw-r--r--kommander/editor/formwindow.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kommander/editor/formwindow.cpp b/kommander/editor/formwindow.cpp
index f3228b6f..e6088172 100644
--- a/kommander/editor/formwindow.cpp
+++ b/kommander/editor/formwindow.cpp
@@ -583,7 +583,7 @@ void FormWindow::handleMousePress(TQMouseEvent *e, TQWidget *w)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget*)opw);
+ repaintSelection((TQWidget*)opw);
}
currRect = TQRect(0, 0, -1, -1);
startRectDraw(mapFromGlobal(e->globalPos()), e->globalPos(), this, Rubber);
@@ -1091,7 +1091,7 @@ void FormWindow::selectWidget(TQObject * o, bool select)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
emitShowProperties(propertyWidget);
return;
}
@@ -1102,7 +1102,7 @@ void FormWindow::selectWidget(TQObject * o, bool select)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
emitShowProperties(propertyWidget);
return;
}
@@ -1115,7 +1115,7 @@ void FormWindow::selectWidget(TQObject * o, bool select)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(w);
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
if (!isPropertyShowingBlocked())
emitShowProperties(propertyWidget);
WidgetSelection *s = usedSelections.tqfind(w);
@@ -1152,7 +1152,7 @@ void FormWindow::selectWidget(TQObject * o, bool select)
else
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
if (!isPropertyShowingBlocked())
emitShowProperties(propertyWidget);
emitSelectionChanged();
@@ -1182,7 +1182,7 @@ void FormWindow::raiseSelection(TQWidget * w)
s->show();
}
-void FormWindow::tqrepaintSelection(TQWidget * w)
+void FormWindow::repaintSelection(TQWidget * w)
{
WidgetSelection *s = usedSelections.tqfind(w);
if (s)
@@ -1201,7 +1201,7 @@ void FormWindow::clearSelection(bool changePropertyDisplay)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
emitShowProperties(propertyWidget);
}
emitSelectionChanged();
@@ -1529,7 +1529,7 @@ void FormWindow::focusOutEvent(TQFocusEvent *)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mainContainer());
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
}
}
@@ -1564,7 +1564,7 @@ void FormWindow::emitShowProperties(TQObject * w)
TQObject *opw = propertyWidget;
propertyWidget = w;
if (opw->isWidgetType())
- tqrepaintSelection((TQWidget *) opw);
+ repaintSelection((TQWidget *) opw);
}
showPropertiesTimer->stop();
showPropertiesTimer->start(0, true);
@@ -2510,7 +2510,7 @@ void FormWindow::setMainContainer(TQWidget *w)
TQObject *opw = propertyWidget;
propertyWidget = TQT_TQOBJECT(mContainer);
if (opw && opw->isWidgetType())
- tqrepaintSelection((TQWidget*)opw);
+ repaintSelection((TQWidget*)opw);
}
}