summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/tests
diff options
context:
space:
mode:
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 729285bb8..9dfd066c9 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 );