diff options
Diffstat (limited to 'korganizer/koincidenceeditor.cpp')
-rw-r--r-- | korganizer/koincidenceeditor.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/koincidenceeditor.cpp b/korganizer/koincidenceeditor.cpp index 9a917699e..9047cff95 100644 --- a/korganizer/koincidenceeditor.cpp +++ b/korganizer/koincidenceeditor.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 <tqtooltip.h> @@ -56,9 +56,9 @@ #include "templatemanagementdialog.h" KOIncidenceEditor::KOIncidenceEditor( const TQString &caption, - Calendar *calendar, TQWidget *parent ) + Calendar *calendar, TQWidget *tqparent ) : KDialogBase( Tabbed, caption, Ok | Apply | Cancel | Default, Ok, - parent, 0, false, false ), + tqparent, 0, false, false ), mAttendeeEditor( 0 ), mResource( 0 ), mIsCounter( false ), mIsCreateTask( false ), mRecurIncidence( 0 ), mRecurIncidenceAfterDissoc( 0 ) { @@ -197,7 +197,7 @@ void KOIncidenceEditor::setupDesignerTabs( const TQString &type ) "korganizer/designer/" + type + "/*.ui", true, true ); for ( TQStringList::iterator it = list.begin(); it != list.end(); ++it ) { const TQString &fn = (*it).mid( (*it).findRev('/') + 1 ); - if ( activePages.find( fn ) != activePages.end() ) { + if ( activePages.tqfind( fn ) != activePages.end() ) { addDesignerTab( *it ); } } |