diff options
Diffstat (limited to 'quanta/project/projectlist.h')
-rw-r--r-- | quanta/project/projectlist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/project/projectlist.h b/quanta/project/projectlist.h index 361c119c..7106e142 100644 --- a/quanta/project/projectlist.h +++ b/quanta/project/projectlist.h @@ -68,11 +68,11 @@ public: /** @return true if url is in container */ - bool tqcontains(const KURL &url) const; + bool contains(const KURL &url) const; /** @return pointer to the entry or 0 if not found */ - ProjectURL * tqfind(const KURL &url) const; + ProjectURL * find(const KURL &url) const; /** Attention: never delete the object you have given here because the @@ -97,9 +97,9 @@ private: /** private because I want to control the key. - use tqfind(const KURL &url) instead. + use find(const KURL &url) instead. */ - ProjectURL *tqfind ( const TQString & key ) const; + ProjectURL *find ( const TQString & key ) const; /** private because I want to control the key. @@ -109,7 +109,7 @@ private: /** private because I want to control the key. */ - void tqreplace(const TQString & key, const ProjectURL * item); + void replace(const TQString & key, const ProjectURL * item); }; #endif // PROJECTFILES_H |