summaryrefslogtreecommitdiffstats
path: root/knotes/KNotesAppIface.h
diff options
context:
space:
mode:
Diffstat (limited to 'knotes/KNotesAppIface.h')
-rw-r--r--knotes/KNotesAppIface.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/knotes/KNotesAppIface.h b/knotes/KNotesAppIface.h
index 7ddfdc28..ad24a58b 100644
--- a/knotes/KNotesAppIface.h
+++ b/knotes/KNotesAppIface.h
@@ -19,11 +19,11 @@
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
- the Qt library by Trolltech AS, Norway (or with modified versions
- of Qt that use the same license as Qt), and distribute linked
+ the TQt library by Trolltech AS, Norway (or with modified versions
+ of TQt that use the same license as TQt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
- Qt. If you modify this file, you may extend this exception to
+ TQt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
@@ -49,8 +49,8 @@ k_dcop:
* @param text the body of the new note
* @return the new notes' id
*/
- virtual TQString newNote( const TQString& name = TQString::null,
- const TQString& text = TQString::null ) = 0;
+ virtual TQString newNote( const TQString& name = TQString(),
+ const TQString& text = TQString() ) = 0;
/**
* Create a new note and inserts the current text in the clipboard
@@ -60,7 +60,7 @@ k_dcop:
* KNotes will choose an appropriate name
* @return the new notes' id
*/
- virtual TQString newNoteFromClipboard( const TQString& name = TQString::null ) = 0;
+ virtual TQString newNoteFromClipboard( const TQString& name = TQString() ) = 0;
/**
* Deletes a note forever.
@@ -98,14 +98,14 @@ k_dcop:
/**
* Returns the foreground/text color of a note.
* @param noteId the id of the note in question
- * @return the foreground/text color as a QString
+ * @return the foreground/text color as a TQString
*/
virtual TQString fgColor( const TQString& noteId ) const = 0;
/**
* Returns the background color of a note.
* @param noteId the id of the note in question
- * @return the background color as a QString
+ * @return the background color as a TQString
*/
virtual TQString bgColor( const TQString& noteId ) const = 0;
@@ -121,14 +121,14 @@ k_dcop:
/**
* Returns the title/name of a note.
* @param noteId the id of the note in question
- * @return the name as a QString
+ * @return the name as a TQString
*/
virtual TQString name( const TQString& noteId ) const = 0;
/**
* Returns the text of a note.
* @param noteId the id of the note in question
- * @return the body as a QString
+ * @return the body as a TQString
*/
virtual TQString text( const TQString& noteId ) const = 0;