diff options
Diffstat (limited to 'doc/plugins-howto.doc')
-rw-r--r-- | doc/plugins-howto.doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/plugins-howto.doc b/doc/plugins-howto.doc index ac1f31f90..f771678b5 100644 --- a/doc/plugins-howto.doc +++ b/doc/plugins-howto.doc @@ -102,7 +102,7 @@ to make available as a plugin. The required code is straightforward: return QStringList() << "mystyle"; } - QStyle* create( const QString& key ) { + QStyle* create( const TQString& key ) { if ( key == "mystyle" ) return new MyStyle; return 0; |