diff options
Diffstat (limited to 'kounavail/kounavail.h')
-rw-r--r-- | kounavail/kounavail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kounavail/kounavail.h b/kounavail/kounavail.h index afbdbaaf..1a0e1c0e 100644 --- a/kounavail/kounavail.h +++ b/kounavail/kounavail.h @@ -51,14 +51,14 @@ public: enum UnavailReason { DocumentNotFound, HandlerNotFound }; /** This is called by KoDocumentChild::createUnavailDocument */ void setUnavailReason( const TQString& reason ) { m_reason = reason; } - // stupid tqmoc - I want a write-only property ! + // stupid moc - I want a write-only property ! TQString unavailReason() const { return m_reason; } /** This is called by KoDocumentChild::createUnavailDocument * Note the trick: we directly modify the URL of the document, * the one returned by KPart's url() */ void setRealURL( const TQString& u ) { m_url = u; } - // stupid tqmoc again + // stupid moc again TQString realURL() const { return m_url.url(); } protected: |