summaryrefslogtreecommitdiffstats
path: root/kmix
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-09 02:23:29 +0000
commit914b4db5c94848135cd675ffdb5fa4049cbe33e4 (patch)
tree051d5d44af2695f6066f38bee804dfae1ad62490 /kmix
parentf949c4652e0aae023b4306f3550914811743698e (diff)
downloadtdemultimedia-914b4db5c94848135cd675ffdb5fa4049cbe33e4.tar.gz
tdemultimedia-914b4db5c94848135cd675ffdb5fa4049cbe33e4.zip
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...] tqinvalidate[...] tqparent[...] tqmask[...] tqlayout[...] tqalignment[...] git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmix')
-rw-r--r--kmix/colorwidget.ui2
-rw-r--r--kmix/kledbutton.cpp2
-rw-r--r--kmix/kmixapplet.cpp2
-rw-r--r--kmix/kmixdockwidget.cpp4
-rw-r--r--kmix/kmixerwidget.cpp2
-rw-r--r--kmix/mdwslider.cpp4
-rw-r--r--kmix/mixdevice.h2
-rw-r--r--kmix/verticaltext.cpp2
8 files changed, 10 insertions, 10 deletions
diff --git a/kmix/colorwidget.ui b/kmix/colorwidget.ui
index cf8f2259..d91d9ea9 100644
--- a/kmix/colorwidget.ui
+++ b/kmix/colorwidget.ui
@@ -272,5 +272,5 @@
<include location="global" impldecl="in declaration">klocale.h</include>
<include location="global" impldecl="in declaration">kseparator.h</include>
</includes>
-<tqlayoutdefaults spacing="6" margin="11"/>
+<layoutdefaults spacing="6" margin="11"/>
</UI>
diff --git a/kmix/kledbutton.cpp b/kmix/kledbutton.cpp
index 0145d4c4..366263f4 100644
--- a/kmix/kledbutton.cpp
+++ b/kmix/kledbutton.cpp
@@ -53,7 +53,7 @@ void KLedButton::mousePressEvent( TQMouseEvent *e )
bool KLedButton::eventFilter( TQObject* /*obj*/ , TQEvent* /*ev*/ ) {
// KLed and thus KLedButtung does not do proper positioning in TQLayout's.
- // Thus I listen to my tqparents resize events and do it here ... OUCH, that's ugly
+ // Thus I listen to my parents resize events and do it here ... OUCH, that's ugly
/* No, this cannot work !
if ( ev->type() == TQEvent::Resize ) {
TQResizeEvent* qre = (TQResizeEvent*)ev;
diff --git a/kmix/kmixapplet.cpp b/kmix/kmixapplet.cpp
index 200ee035..51676a57 100644
--- a/kmix/kmixapplet.cpp
+++ b/kmix/kmixapplet.cpp
@@ -433,7 +433,7 @@ TQSize KMixApplet::tqsizeHint() const {
}
/**
- We need widthForHeight() and heigthForWidth() only because KPanelApplet::updateLayout does retqlayouts
+ We need widthForHeight() and heigthForWidth() only because KPanelApplet::updateLayout does relayouts
using this method. Actually we ignore the passed paramater and just return our preferred size.
*/
int KMixApplet::widthForHeight(int) const {
diff --git a/kmix/kmixdockwidget.cpp b/kmix/kmixdockwidget.cpp
index 868eae9f..d5c254e6 100644
--- a/kmix/kmixdockwidget.cpp
+++ b/kmix/kmixdockwidget.cpp
@@ -384,9 +384,9 @@ void
KMixDockWidget::contextMenuAboutToShow( KPopupMenu* /* menu */ )
{
KAction* showAction = actionCollection()->action("minimizeRestore");
- if ( tqparentWidget() && showAction )
+ if ( parentWidget() && showAction )
{
- if ( tqparentWidget()->isVisible() )
+ if ( parentWidget()->isVisible() )
{
showAction->setText( i18n("Hide Mixer Window") );
}
diff --git a/kmix/kmixerwidget.cpp b/kmix/kmixerwidget.cpp
index 322f2160..b6491015 100644
--- a/kmix/kmixerwidget.cpp
+++ b/kmix/kmixerwidget.cpp
@@ -167,7 +167,7 @@ void KMixerWidget::possiblyAddView(ViewBase* vbase)
_views.push_back(vbase);
vbase ->createDeviceWidgets();
m_ioTab->addTab( vbase , vbase->caption() );
- connect( vbase, TQT_SIGNAL(toggleMenuBar()), tqparentWidget(), TQT_SLOT(toggleMenuBar()) );
+ connect( vbase, TQT_SIGNAL(toggleMenuBar()), parentWidget(), TQT_SLOT(toggleMenuBar()) );
}
}
diff --git a/kmix/mdwslider.cpp b/kmix/mdwslider.cpp
index 3867af9f..2ea95412 100644
--- a/kmix/mdwslider.cpp
+++ b/kmix/mdwslider.cpp
@@ -239,7 +239,7 @@ void MDWSlider::createWidgets( bool showMuteLED, bool showRecordLED )
} // has Mute LED
else {
// we don't have a MUTE LED. We create a dummy widget
- // !! possibly not neccesary any more (we are tqlayouted)
+ // !! possibly not neccesary any more (we are layouted)
TQWidget *qw = new TQWidget(this, "Spacer");
qw->setFixedSize( TQSize(16, 16) );
ledtqlayout->addWidget(qw);
@@ -352,7 +352,7 @@ void MDWSlider::createWidgets( bool showMuteLED, bool showRecordLED )
else
{
// we don't have a RECORD LED. We create a dummy widget
- // !! possibly not neccesary any more (we are tqlayouted)
+ // !! possibly not neccesary any more (we are layouted)
TQWidget *qw = new TQWidget(this, "Spacer");
qw->setFixedSize( TQSize(16, 16) );
rectqlayout->addWidget(qw);
diff --git a/kmix/mixdevice.h b/kmix/mixdevice.h
index 5dca6d72..1ec64696 100644
--- a/kmix/mixdevice.h
+++ b/kmix/mixdevice.h
@@ -31,7 +31,7 @@ class MixDevice : public TQObject
// The DeviceCategory tells the type of the device
- // It is used in bittqmasks, so you must use values of 2^n .
+ // It is used in bitmasks, so you must use values of 2^n .
enum DeviceCategory { UNDEFINED= 0x00, SLIDER=0x01, SWITCH=0x02, ENUM=0x04, ALL=0xff };
diff --git a/kmix/verticaltext.cpp b/kmix/verticaltext.cpp
index 723cb75b..8db5c60f 100644
--- a/kmix/verticaltext.cpp
+++ b/kmix/verticaltext.cpp
@@ -27,7 +27,7 @@
VerticalText::VerticalText(TQWidget * tqparent, const char * name, WFlags f) : TQWidget(tqparent,name,f)
{
resize(20,100 /*tqparent->height() */ );
- setMinimumSize(20,10); // neccesary for smooth integration into tqlayouts (we only care for the widths).
+ setMinimumSize(20,10); // neccesary for smooth integration into layouts (we only care for the widths).
}
VerticalText::~VerticalText() {