summaryrefslogtreecommitdiffstats
path: root/korganizer/filtereditdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/filtereditdialog.cpp')
-rw-r--r--korganizer/filtereditdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/filtereditdialog.cpp b/korganizer/filtereditdialog.cpp
index 32138bff..cf6bf2ff 100644
--- a/korganizer/filtereditdialog.cpp
+++ b/korganizer/filtereditdialog.cpp
@@ -20,8 +20,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 <tqpushbutton.h>
@@ -47,8 +47,8 @@
#include "filtereditdialog.moc"
FilterEditDialog::FilterEditDialog( TQPtrList<CalFilter> *filters,
- TQWidget *parent, const char *name)
- : KDialogBase( parent, name, false, i18n("Edit Calendar Filters"),
+ TQWidget *tqparent, const char *name)
+ : KDialogBase( tqparent, name, false, i18n("Edit Calendar Filters"),
Ok | Apply | Cancel )
{
setMainWidget( mFilterEdit = new FilterEdit(filters, this));
@@ -92,8 +92,8 @@ void FilterEditDialog::setDialogConsistent(bool consistent) {
enableButtonApply( consistent );
}
-FilterEdit::FilterEdit(TQPtrList<CalFilter> *filters, TQWidget *parent)
- : FilterEdit_base( parent), current(0), mCategorySelectDialog( 0 )
+FilterEdit::FilterEdit(TQPtrList<CalFilter> *filters, TQWidget *tqparent)
+ : FilterEdit_base( tqparent), current(0), mCategorySelectDialog( 0 )
{
mFilters = filters;
TQWhatsThis::add( mNewButton, i18n( "Press this button to define a new filter." ) );
@@ -207,7 +207,7 @@ void FilterEdit::bDeletePressed() {
mFilters->remove( selected );
current = 0L;
updateFilterList();
- mRulesList->setSelected(QMIN(mRulesList->count()-1, selected), true);
+ mRulesList->setSelected(TQMIN(mRulesList->count()-1, selected), true);
emit filterChanged();
}