summaryrefslogtreecommitdiffstats
path: root/arts/gui/common/artsgui.idl
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commit27edf28be2772229a7974a007313ea30d92c3ffd (patch)
tree14b9842bbd90c801d89ad5ddb38831fdf8aec1a4 /arts/gui/common/artsgui.idl
parent7ef01c0f34d9c6732d258154bcd3ba5a88280db9 (diff)
downloadtdemultimedia-27edf28be2772229a7974a007313ea30d92c3ffd.tar.gz
tdemultimedia-27edf28be2772229a7974a007313ea30d92c3ffd.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'arts/gui/common/artsgui.idl')
-rw-r--r--arts/gui/common/artsgui.idl22
1 files changed, 11 insertions, 11 deletions
diff --git a/arts/gui/common/artsgui.idl b/arts/gui/common/artsgui.idl
index de6da9e7..c88dd3f1 100644
--- a/arts/gui/common/artsgui.idl
+++ b/arts/gui/common/artsgui.idl
@@ -48,7 +48,7 @@ module Arts {
interface Widget {
readonly attribute long widgetID;
- attribute Widget tqparent;
+ attribute Widget parent;
attribute long x,y,width,height;
attribute boolean visible;
attribute SizePolicy hSizePolicy;
@@ -82,7 +82,7 @@ module Arts {
};
interface Frame : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute long margin;
attribute long linewidth;
@@ -118,7 +118,7 @@ module Arts {
Usage is quite simple: Add the widgets you have in the right order
to the layoutbox by calling addWidget().
- Thats it, no ._addChild or .tqparent with this widget.
+ Thats it, no ._addChild or .parent with this widget.
For more information see QBoxLayout.
(akrille)
@@ -173,7 +173,7 @@ module Arts {
Usage is quite simple: Create the Widget you want to be hidable inside
a container like LayoutBox or a normal widget. Then create the PopupBox
and call <Name_of_PopupBox>.widget( <Name_of_your_Container> ).
- Thats it, no ._addChild or .tqparent with this widget.
+ Thats it, no ._addChild or .parent with this widget.
(akrille)
*/
interface PopupBox : Frame {
@@ -186,8 +186,8 @@ module Arts {
};
interface Button : Widget {
- void constructor( Widget tqparent );
- void constructor( string text, Widget tqparent );
+ void constructor( Widget parent );
+ void constructor( string text, Widget parent );
attribute string text;
attribute boolean toggle;
@@ -205,7 +205,7 @@ module Arts {
};
interface Fader : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption, color;
attribute float min, max, value;
@@ -213,21 +213,21 @@ module Arts {
};
interface LineEdit : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute string text;
};
interface SpinBox : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute long min, max, value;
};
interface ComboBox : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute sequence<string> choices;
@@ -235,7 +235,7 @@ module Arts {
};
interface Graph : Widget {
- void constructor( Widget tqparent );
+ void constructor( Widget parent );
attribute string caption;
attribute float minx, maxx, miny, maxy;