author | zecke <zecke> | 2002-10-06 09:53:16 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-06 09:53:16 (UTC) |
commit | 93432da5b2a73874b359d4a4468cdaffeaab960c (patch) (side-by-side diff) | |
tree | 1f928a58b0e6b3036153a5461291f85d229f13fb /library/applnk.h | |
parent | a1ebad08d462e682554d39a9beabce125a374452 (diff) | |
download | opie-93432da5b2a73874b359d4a4468cdaffeaab960c.zip opie-93432da5b2a73874b359d4a4468cdaffeaab960c.tar.gz opie-93432da5b2a73874b359d4a4468cdaffeaab960c.tar.bz2 |
Sandman how did this compile?
inline setRotation( const QString& rotation ) { mRotation = rot; }
I fixed that now
-rw-r--r-- | library/applnk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/applnk.h b/library/applnk.h index b92ddba..b4590d3 100644 --- a/library/applnk.h +++ b/library/applnk.h @@ -64,25 +64,25 @@ public: void execute() const; void execute(const QStringList& args) const; void removeFiles(); void removeLinkFile(); void setName( const QString& docname ); void setExec( const QString& exec ); void setFile( const QString& filename ); void setLinkFile( const QString& filename ); void setComment( const QString& comment ); void setType( const QString& mimetype ); - inline void setRotation ( const QString &rotation ) { mRotation = rot; } // inline for BC + inline void setRotation ( const QString &rot ) { mRotation = rot; } // inline for BC void setIcon( const QString& iconname ); void setCategories( const QArray<int> &v ); bool writeLink() const; void setProperty(const QString& key, const QString& value); QString property(const QString& key) const; #ifdef QTOPIA_INTERNAL_PRELOADACCESS bool isPreloaded() const; void setPreloaded(bool yesNo); #endif |