summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/tests
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:12:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:12:30 -0600
commit11191ef0b9908604d1d7aaca382b011ef22c454c (patch)
treed38f0ccd8bfcc9756f5cfc42fb2ad1dad351e6aa /lib/kofficeui/tests
parentc9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (diff)
downloadkoffice-11191ef0b9908604d1d7aaca382b011ef22c454c.tar.gz
koffice-11191ef0b9908604d1d7aaca382b011ef22c454c.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'lib/kofficeui/tests')
-rw-r--r--lib/kofficeui/tests/coloraction_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kofficeui/tests/coloraction_test.cpp b/lib/kofficeui/tests/coloraction_test.cpp
index 729285bb..9dfd066c 100644
--- a/lib/kofficeui/tests/coloraction_test.cpp
+++ b/lib/kofficeui/tests/coloraction_test.cpp
@@ -36,19 +36,19 @@
TopLevel::TopLevel( TQWidget* parent, const char* name) : TQMainWindow( parent, name )
{
- setCaption( TQString::tqfromLatin1( "KColorAction test application" ) );
+ setCaption( TQString::fromLatin1( "KColorAction test application" ) );
TQWidget *w = new TQWidget( this );
setCentralWidget( w );
TQBoxLayout* l = new TQHBoxLayout( w, KDialog::marginHint(), KDialog::spacingHint() );
- TQGroupBox* b1 = new TQVGroupBox( TQString::tqfromLatin1( "KoColorPanel 1" ), w );
+ TQGroupBox* b1 = new TQVGroupBox( TQString::fromLatin1( "KoColorPanel 1" ), w );
panel = new KoColorPanel( b1, "panel1" );
connect( panel, TQT_SIGNAL( colorSelected( const TQColor& ) ), TQT_SLOT( slotColorSelected( const TQColor& ) ) );
//panel->insertDefaultColors();
l->addWidget( b1 );
- b1 = new TQVGroupBox( TQString::tqfromLatin1( "KoColorPanel 2" ), w );
+ b1 = new TQVGroupBox( TQString::fromLatin1( "KoColorPanel 2" ), w );
( void ) new KoColorPanel( b1, "panel2" );
l->addWidget( b1 );