author | clem <clem> | 2004-10-08 14:28:40 (UTC) |
---|---|---|
committer | clem <clem> | 2004-10-08 14:28:40 (UTC) |
commit | 057abc0180c8d821960d6957a8c3f64f0b86b229 (patch) (side-by-side diff) | |
tree | 5aaadbd1924a89637ccf534ed91493b6406d8a5b /libopie2 | |
parent | 0e41f335c0db28250216a5292a2b7bcee2a1cf4a (diff) | |
download | opie-057abc0180c8d821960d6957a8c3f64f0b86b229.zip opie-057abc0180c8d821960d6957a8c3f64f0b86b229.tar.gz opie-057abc0180c8d821960d6957a8c3f64f0b86b229.tar.bz2 |
small doxygen doc fixes
-rw-r--r-- | libopie2/opiecore/okeyfilter.cpp | 8 | ||||
-rw-r--r-- | libopie2/opieui/big-screen/omodalhelper.h | 2 | ||||
-rw-r--r-- | libopie2/opieui/otabinfo.h | 5 |
3 files changed, 5 insertions, 10 deletions
diff --git a/libopie2/opiecore/okeyfilter.cpp b/libopie2/opiecore/okeyfilter.cpp index a517333..61b7909 100644 --- a/libopie2/opiecore/okeyfilter.cpp +++ b/libopie2/opiecore/okeyfilter.cpp @@ -30,33 +30,33 @@ _;:, .> :=|. This program is free software; you can #include "device/odevice.h" #include "odebug.h" namespace Opie { namespace Core { class OKeyFilterPrivate:public OKeyFilter, QWSServer::KeyboardFilter { static QValueList<QWSServer::KeyboardFilter*> filterList; static QValueList<QWSServer::KeyboardFilter*> preFilterList; protected: OKeyFilterPrivate(const OKeyFilterPrivate&):OKeyFilter(),QWSServer::KeyboardFilter(){}; - virtual void addPreHandler(QWSServer::KeyboardFilter*); - virtual void remPreHandler(QWSServer::KeyboardFilter*); + virtual void addPreHandler(QWSServer::KeyboardFilter* aFilter); + virtual void remPreHandler(QWSServer::KeyboardFilter* aFilter); public: OKeyFilterPrivate(); virtual ~OKeyFilterPrivate(); virtual bool filter( int unicode, int keycode, int modifiers, bool isPress, bool autoRepeat ); - virtual void addHandler(QWSServer::KeyboardFilter*); - virtual void remHandler(QWSServer::KeyboardFilter*); + virtual void addHandler(QWSServer::KeyboardFilter* aFilter); + virtual void remHandler(QWSServer::KeyboardFilter* aFilter); }; QValueList<QWSServer::KeyboardFilter*> OKeyFilterPrivate::filterList; QValueList<QWSServer::KeyboardFilter*> OKeyFilterPrivate::preFilterList; OKeyFilter::OKeyFilter() { } OKeyFilter::~OKeyFilter() { } diff --git a/libopie2/opieui/big-screen/omodalhelper.h b/libopie2/opieui/big-screen/omodalhelper.h index 096cec4..ed6fee3 100644 --- a/libopie2/opieui/big-screen/omodalhelper.h +++ b/libopie2/opieui/big-screen/omodalhelper.h @@ -227,25 +227,25 @@ OModalHelper<Dialog, Record, Id>::OModalHelper( enum Mode mode, QObject* parent m_signal = new OModalHelperSignal( this, parent ); m_controler = new OModalHelperControler( this, m_signal ); } /** * This functions looks for your record and sees if it is * handled with this helper. Note that done records * will not be returned. * * @return true if the record is currenlty edited otherwise false * - * @param Id The id which might be handled + * @param id The id which might be handled */ template<class Dialog, class Record, typename Id> bool OModalHelper<Dialog, Record, Id>::handles( Id id )const { if ( m_transactions.isEmpty() ) return false; TransactionMap::ConstIterator it = m_transactions.begin(); for ( ; it != m_transactions.end(); ++it ) if ( it.data() == id ) return true; diff --git a/libopie2/opieui/otabinfo.h b/libopie2/opieui/otabinfo.h index 426c45a..d6d5abf 100644 --- a/libopie2/opieui/otabinfo.h +++ b/libopie2/opieui/otabinfo.h @@ -51,29 +51,24 @@ namespace Ui { * * ID - integer tab bar ID * Control - QWidget pointer to child widget * Label - QString text label for OTabWidget selection control * Icon - QString name of icon file */ class OTabInfo { public: /** * @fn OTabInfo() * @brief Object constructor. - * - * @param parent Pointer to parent of this control. - * @param name Name of control. - * @param s Style of widget selection control. - * @param p Position of the widget selection control. */ OTabInfo() : i( -1 ), c( 0 ), p( 0 ), l( QString::null ) {} /** * @fn OTabInfo( int id, QWidget *control, const QString &icon, const QString &label ) * @brief Object constructor. * * @param id TabBar identifier for widget. * @param control QWidget pointer to widget. * @param icon QString name of icon file. * @param label QString text label for OTabWidget selection control. */ |