From ba2a3ce341c0c71bbbcf350fcbcd60c552220b31 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 21 Dec 2011 14:23:13 -0600 Subject: Rename obsolete tq methods to standard names --- korganizer/printing/calprintpluginbase.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'korganizer/printing/calprintpluginbase.cpp') diff --git a/korganizer/printing/calprintpluginbase.cpp b/korganizer/printing/calprintpluginbase.cpp index 22d6a0653..99d57395e 100644 --- a/korganizer/printing/calprintpluginbase.cpp +++ b/korganizer/printing/calprintpluginbase.cpp @@ -128,7 +128,7 @@ CalPrintPluginBase::~CalPrintPluginBase() TQWidget *CalPrintPluginBase::createConfigWidget( TQWidget *w ) { TQFrame *wdg = new TQFrame( w ); - TQVBoxLayout *tqlayout = new TQVBoxLayout( wdg ); + TQVBoxLayout *layout = new TQVBoxLayout( wdg ); TQLabel *title = new TQLabel( description(), wdg ); TQFont titleFont( title->font() ); @@ -136,13 +136,13 @@ TQWidget *CalPrintPluginBase::createConfigWidget( TQWidget *w ) titleFont.setBold( true ); title->setFont( titleFont ); - tqlayout->addWidget( title ); - tqlayout->addWidget( new TQLabel( info(), wdg ) ); - tqlayout->addSpacing( 20 ); - tqlayout->addWidget( new TQLabel( i18n("This printing style does not " + layout->addWidget( title ); + layout->addWidget( new TQLabel( info(), wdg ) ); + layout->addSpacing( 20 ); + layout->addWidget( new TQLabel( i18n("This printing style does not " "have any configuration options."), wdg ) ); - tqlayout->addStretch(); + layout->addStretch(); return wdg; } -- cgit v1.2.1