diff options
Diffstat (limited to 'korganizer/history.cpp')
-rw-r--r-- | korganizer/history.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/history.cpp b/korganizer/history.cpp index 6207ebec9..c01aed912 100644 --- a/korganizer/history.cpp +++ b/korganizer/history.cpp @@ -19,8 +19,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 "history.h" @@ -57,7 +57,7 @@ void History::undo() entry = mUndoEntry.current(); if ( entry ) emit undoAvailable( entry->text() ); - else emit undoAvailable( TQString::null ); + else emit undoAvailable( TQString() ); } void History::redo() @@ -76,7 +76,7 @@ void History::redo() entry = mRedoEntry.current(); if ( entry ) emit redoAvailable( entry->text() ); - else emit redoAvailable( TQString::null ); + else emit redoAvailable( TQString() ); } void History::truncate() @@ -85,7 +85,7 @@ void History::truncate() mEntries.removeLast(); } mRedoEntry = TQPtrList<Entry>( mEntries ); - emit redoAvailable( TQString::null ); + emit redoAvailable( TQString() ); } void History::recordDelete( Incidence *incidence ) |