summaryrefslogtreecommitdiffstats
path: root/kdcop/kdcopwindow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:25 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:25 -0600
commit2c01fd64ddde84a6d78b632f7f3b7c3560dc288c (patch)
tree65f4f4370cf4269757d7fa4d0f4d15996a1bf68f /kdcop/kdcopwindow.cpp
parent73c08b592db45af554b9f21029bc549d70f683ab (diff)
downloadtdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.tar.gz
tdebase-2c01fd64ddde84a6d78b632f7f3b7c3560dc288c.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 73c08b592db45af554b9f21029bc549d70f683ab.
Diffstat (limited to 'kdcop/kdcopwindow.cpp')
-rw-r--r--kdcop/kdcopwindow.cpp52
1 files changed, 26 insertions, 26 deletions
diff --git a/kdcop/kdcopwindow.cpp b/kdcop/kdcopwindow.cpp
index 1f6fa75a6..212376a0a 100644
--- a/kdcop/kdcopwindow.cpp
+++ b/kdcop/kdcopwindow.cpp
@@ -30,7 +30,7 @@
#include <tqwidgetstack.h>
#include <tqlabel.h>
#include <tqsplitter.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqcheckbox.h>
#include <tqlineedit.h>
#include <tqvalidator.h>
@@ -40,7 +40,7 @@
#include <tqcursor.h>
#include <tqsize.h>
#include <tqrect.h>
-#include <clipboard.h>
+#include <tqclipboard.h>
#include <tqdatetime.h>
#include <dcopref.h>
#include <tqvbox.h>
@@ -114,7 +114,7 @@ DCOPBrowserApplicationItem::DCOPBrowserApplicationItem
{
setExpandable(true);
setText(0, TQString::fromUtf8(app_));
- setPixmap(0, KGlobal::iconLoader()->loadIcon( TQString::fromLatin1( "exec" ), KIcon::Small ));
+ setPixmap(0, KGlobal::iconLoader()->loadIcon( TQString::tqfromLatin1( "exec" ), KIcon::Small ));
/* Get the icon: we use the icon from a mainwindow in that class.
@@ -674,7 +674,7 @@ void KDCOPWindow::slotCallFunction( TQListViewItem* it )
}
if (!wl.isEmpty())
- wl.at(0)->setFocus();
+ wl.tqat(0)->setFocus();
i++;
@@ -693,104 +693,104 @@ void KDCOPWindow::slotCallFunction( TQListViewItem* it )
if ( type == "int" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toInt();
}
else if ( type == "unsigned" || type == "uint" || type == "unsigned int"
|| type == "TQ_UINT32" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toUInt();
}
else if( type == "long" || type == "long int" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toLong();
}
else if( type == "ulong" || type == "unsigned long" || type == "unsigned long int" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toULong();
}
else if( type == "short" || type == "short int" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toShort();
}
else if( type == "ushort" || type == "unsigned short" || type == "unsigned short int" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toUShort();
}
else if ( type == "TQ_UINT64" )
{
- KLineEdit* e = ( KLineEdit* )wl.at( i );
+ KLineEdit* e = ( KLineEdit* )wl.tqat( i );
arg << e->text().toULongLong();
}
else if( type == "float" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toFloat();
}
else if( type == "double" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text().toDouble();
}
else if( type == "bool" )
{
- TQCheckBox* c = (TQCheckBox*)wl.at( i );
+ TQCheckBox* c = (TQCheckBox*)wl.tqat( i );
arg << c->isChecked();
}
else if( type == "TQCString" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << TQCString( e->text().local8Bit() );
}
else if( type == "TQString" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << e->text();
}
else if( type == "TQStringList" )
{
- KEditListBox* e = (KEditListBox*)wl.at( i );
+ KEditListBox* e = (KEditListBox*)wl.tqat( i );
arg << e->items();
}
else if( type == "TQValueList<TQCString>" )
{
- KEditListBox* e = (KEditListBox*)wl.at( i );
+ KEditListBox* e = (KEditListBox*)wl.tqat( i );
for (int i = 0; i < e->count(); i++)
arg << TQCString( e->text(i).local8Bit() );
}
else if( type == "KURL" )
{
- KLineEdit* e = (KLineEdit*)wl.at( i );
+ KLineEdit* e = (KLineEdit*)wl.tqat( i );
arg << KURL( e->text() );
}
else if( type == "TQColor" )
{
- KColorButton* e = (KColorButton*)wl.at( i );
+ KColorButton* e = (KColorButton*)wl.tqat( i );
arg << e->color();
}
else if( type == "TQSize" )
{
- KMultiIntEdit* e = (KMultiIntEdit*)wl.at( i );
+ KMultiIntEdit* e = (KMultiIntEdit*)wl.tqat( i );
arg << TQSize(e->field(1) , e->field(2)) ;
}
else if( type == "TQPoint" )
{
- KMultiIntEdit* e = (KMultiIntEdit*)wl.at( i );
+ KMultiIntEdit* e = (KMultiIntEdit*)wl.tqat( i );
arg << TQPoint(e->field(1) , e->field(2)) ;
}
else if( type == "TQRect" )
{
- KMultiIntEdit* e = (KMultiIntEdit*)wl.at( i );
+ KMultiIntEdit* e = (KMultiIntEdit*)wl.tqat( i );
arg << TQRect(e->field(1) , e->field(2) , e->field(3) , e->field(4)) ;
}
else if( type == "TQPixmap" )
{
- KURLRequester* e= (KURLRequester*)wl.at( i );
+ KURLRequester* e= (KURLRequester*)wl.tqat( i );
arg << TQPixmap(e->url());
}
else
@@ -1053,7 +1053,7 @@ bool KDCOPWindow::demarshal
TQCursor r;
reply >> r;
//theList->insertItem(r, 1);
- ret << "Cursor #" + TQString::number(r.shape());
+ ret << "Cursor #" + TQString::number(r.tqshape());
}
else if (replyType == "TQPixmap")
{
@@ -1211,7 +1211,7 @@ void KDCOPWindow::slotCopy()
// below list view. If there is nothing selected from
// the below menu then tell the tree to copy its current
// selection as text.
- TQClipboard *clipboard = TQApplication::clipboard();
+ TQClipboard *clipboard = TQApplication::tqclipboard();
if (mainView->lb_replyData->count()!= 0)
{