summaryrefslogtreecommitdiffstats
path: root/arts/gui/kde/artstestgui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arts/gui/kde/artstestgui.cpp')
-rw-r--r--arts/gui/kde/artstestgui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/arts/gui/kde/artstestgui.cpp b/arts/gui/kde/artstestgui.cpp
index 9464ac7a..c7532003 100644
--- a/arts/gui/kde/artstestgui.cpp
+++ b/arts/gui/kde/artstestgui.cpp
@@ -41,7 +41,7 @@ int main(int argc, char **argv)
w.width(500); w.height(350); w.show();
Button b;
- b.tqparent(w);
+ b.parent(w);
b.x(10);
b.y(10);
b.width(100);
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
b.show();
Button b2;
- b2.tqparent(w);
+ b2.parent(w);
b2.x(10);
b2.y(30);
b2.width(100);
@@ -59,7 +59,7 @@ int main(int argc, char **argv)
b2.show();
Poti p;
- p.tqparent(w);
+ p.parent(w);
p.x(150);
p.y(10);
p.caption("delay (ms)");
@@ -70,7 +70,7 @@ int main(int argc, char **argv)
p.show();
Poti q;
- q.tqparent(w);
+ q.parent(w);
q.x(250);
q.y(10);
q.caption("delay (ms)");
@@ -81,7 +81,7 @@ int main(int argc, char **argv)
q.show();
Graph g;
- g.tqparent(w);
+ g.parent(w);
g.x(50);
g.y(70);
g.width(400);