diff options
Diffstat (limited to 'kaddressbook/printing/selectionpage.cpp')
-rw-r--r-- | kaddressbook/printing/selectionpage.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/printing/selectionpage.cpp b/kaddressbook/printing/selectionpage.cpp index e926d0dba..bf0a49a08 100644 --- a/kaddressbook/printing/selectionpage.cpp +++ b/kaddressbook/printing/selectionpage.cpp @@ -18,8 +18,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <kdialog.h> @@ -38,8 +38,8 @@ #include "selectionpage.h" -SelectionPage::SelectionPage( TQWidget* parent, const char* name ) - : TQWidget( parent, name ) +SelectionPage::SelectionPage( TQWidget* tqparent, const char* name ) + : TQWidget( tqparent, name ) { setCaption( i18n( "Choose Which Contacts to Print" ) ); @@ -51,12 +51,12 @@ SelectionPage::SelectionPage( TQWidget* parent, const char* name ) mButtonGroup = new TQButtonGroup( this ); mButtonGroup->setFrameShape( TQButtonGroup::NoFrame ); - mButtonGroup->setColumnLayout( 0, Qt::Vertical ); + mButtonGroup->setColumnLayout( 0, TQt::Vertical ); mButtonGroup->tqlayout()->setSpacing( KDialog::spacingHint() ); mButtonGroup->tqlayout()->setMargin( KDialog::marginHint() ); TQGridLayout *groupLayout = new TQGridLayout( mButtonGroup->tqlayout() ); - groupLayout->tqsetAlignment( Qt::AlignTop ); + groupLayout->tqsetAlignment( TQt::AlignTop ); mUseWholeBook = new TQRadioButton( i18n( "&All contacts" ), mButtonGroup ); mUseWholeBook->setChecked( true ); @@ -76,7 +76,7 @@ SelectionPage::SelectionPage( TQWidget* parent, const char* name ) mUseCategories = new TQRadioButton( i18n( "Category &members" ), mButtonGroup ); TQWhatsThis::add( mUseCategories, i18n( "Only print contacts who are members of a category that is checked on the list to the left.\n" "This option is disabled if you have no categories." ) ); - groupLayout->addWidget( mUseCategories, 3, 0, Qt::AlignTop ); + groupLayout->addWidget( mUseCategories, 3, 0, TQt::AlignTop ); mFiltersCombo = new TQComboBox( false, mButtonGroup ); TQWhatsThis::add( mFiltersCombo, i18n( "Select a filter to decide which contacts to print." ) ); |