author | drw <drw> | 2004-03-08 16:30:22 (UTC) |
---|---|---|
committer | drw <drw> | 2004-03-08 16:30:22 (UTC) |
commit | 15a9a86fbec54292a82663e1b01c93450f3fbbf8 (patch) (side-by-side diff) | |
tree | e12b30aaa2e0c209e16c17ad85789a035a36c9cf | |
parent | 6248d9ec10561273cf8a864f1fe6c20b366d2639 (diff) | |
download | opie-15a9a86fbec54292a82663e1b01c93450f3fbbf8.zip opie-15a9a86fbec54292a82663e1b01c93450f3fbbf8.tar.gz opie-15a9a86fbec54292a82663e1b01c93450f3fbbf8.tar.bz2 |
Removed unneeded comment
-rw-r--r-- | libopie2/opieui/otabwidget.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libopie2/opieui/otabwidget.h b/libopie2/opieui/otabwidget.h index c7d32c2..092f22c 100644 --- a/libopie2/opieui/otabwidget.h +++ b/libopie2/opieui/otabwidget.h @@ -109,49 +109,48 @@ class OTabWidget : public QWidget OTabWidget( QWidget * = 0, const char * = 0, TabStyle = Global, TabPosition = Top ); /** * @fn ~OTabWidget() * @brief Object destructor. */ ~OTabWidget(); /** * @fn addTab( QWidget *child, const QString &icon, const QString &label ) * @brief Add new widget to control. * * @param child Widget control. * @param icon Path to icon. * @param label Text label. */ void addTab( QWidget *, const QString &, const QString & ); /** * @fn removePage( QWidget *widget ) * @brief Remove widget from control. Does not delete widget. * * @param widget Widget control to be removed. */ - /* ### Page vs. Tab.. yes the widget is a Page but then is addTab wrong -zecke */ void removePage( QWidget * ); /** * @fn changeTab( QWidget *widget, const QString &icon, const QString &label ) * @brief Change text and/or icon for existing tab * * @param child Widget control. * @param icon Path to icon. * @param label Text label. */ void changeTab( QWidget *, const QString &, const QString & ); /** * @fn tabStyle()const * @brief Returns current widget selection control style. */ TabStyle tabStyle() const; /** * @fn setTabStyle( TabStyle s ) * @brief Set the current widget selection control style. * * @param s New style to be used. */ |