From 36b1e019b76f39cca8fc81f6d4df544f1c94c179 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 21 Dec 2011 14:23:31 -0600 Subject: Rename obsolete tq methods to standard names --- cervisia/tagdlg.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cervisia/tagdlg.cpp') diff --git a/cervisia/tagdlg.cpp b/cervisia/tagdlg.cpp index 3d8b9516..b2bd1506 100644 --- a/cervisia/tagdlg.cpp +++ b/cervisia/tagdlg.cpp @@ -47,7 +47,7 @@ TagDialog::TagDialog(ActionType action, CvsService_stub* service, TQFrame* mainWidget = makeMainWidget(); - TQBoxLayout *tqlayout = new TQVBoxLayout(mainWidget, 0, spacingHint()); + TQBoxLayout *layout = new TQVBoxLayout(mainWidget, 0, spacingHint()); if (action == Delete) { @@ -61,7 +61,7 @@ TagDialog::TagDialog(ActionType action, CvsService_stub* service, connect( tag_button, TQT_SIGNAL(clicked()), this, TQT_SLOT(tagButtonClicked()) ); - TQBoxLayout *tagedit_layout = new TQHBoxLayout(tqlayout); + TQBoxLayout *tagedit_layout = new TQHBoxLayout(layout); tagedit_layout->addWidget(tag_label); tagedit_layout->addWidget(tag_combo); tagedit_layout->addWidget(tag_button); @@ -74,15 +74,15 @@ TagDialog::TagDialog(ActionType action, CvsService_stub* service, TQLabel *tag_label = new TQLabel(tag_edit, i18n("&Name of tag:"), mainWidget); - TQBoxLayout *tagedit_layout = new TQHBoxLayout(tqlayout); + TQBoxLayout *tagedit_layout = new TQHBoxLayout(layout); tagedit_layout->addWidget(tag_label); tagedit_layout->addWidget(tag_edit); branchtag_button = new TQCheckBox(i18n("Create &branch with this tag"), mainWidget); - tqlayout->addWidget(branchtag_button); + layout->addWidget(branchtag_button); forcetag_button = new TQCheckBox(i18n("&Force tag creation even if tag already exists"), mainWidget); - tqlayout->addWidget(forcetag_button); + layout->addWidget(forcetag_button); } setHelp("taggingbranching"); -- cgit v1.2.1