diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:25:11 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-21 13:25:11 -0500 |
commit | a02b9b382927f8f3cb93ccabed60676009ed2fa9 (patch) | |
tree | 552b885e08252ae017b649c56bc520e605bc2f8b /kounavail | |
parent | 3207e9dd713d9514400ceb27dac4dc821579b48f (diff) | |
download | koffice-a02b9b382927f8f3cb93ccabed60676009ed2fa9.tar.gz koffice-a02b9b382927f8f3cb93ccabed60676009ed2fa9.zip |
Fix inadvertent tqt changes.
Diffstat (limited to 'kounavail')
-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: |