summaryrefslogtreecommitdiff
path: root/libopie/otabwidget.h
Unidiff
Diffstat (limited to 'libopie/otabwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/otabwidget.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/libopie/otabwidget.h b/libopie/otabwidget.h
index 23fe774..bcd9a85 100644
--- a/libopie/otabwidget.h
+++ b/libopie/otabwidget.h
@@ -190,34 +190,33 @@ public:
190 190
191/** 191/**
192 * @fn sizeHint() 192 * @fn sizeHint()
193 * @brief Reimplemented for internal purposes. 193 * @brief Reimplemented for internal purposes.
194 */ 194 */
195 QSize sizeHint() const; 195 QSize sizeHint() const;
196 196
197/** 197/**
198 * @fn getCurrentTab( ) 198 * @fn currentTab( )
199 * @brief returns current tab id. 199 * @brief returns current tab id.
200 */ 200 */
201 //FIXME TT coding style currentTab() -zecke 201 int currentTab();
202 int getCurrentTab();
203 202
204 203
205protected: 204protected:
206 205
207/** 206/**
208 * @fn resizeEvent( QResizeEvent * ) 207 * @fn resizeEvent( QResizeEvent * )
209 * @brief Reimplemented for internal purposes. 208 * @brief Reimplemented for internal purposes.
210 */ 209 */
211 void resizeEvent( QResizeEvent * ); 210 void resizeEvent( QResizeEvent * );
212 211
213private: 212private:
214 OTabInfoList tabs; 213 OTabInfoList tabs;
215 OTabInfo *currentTab; 214 OTabInfo *currTab;
216 215
217 TabStyle tabBarStyle; 216 TabStyle tabBarStyle;
218 TabPosition tabBarPosition; 217 TabPosition tabBarPosition;
219 218
220 QWidgetStack *tabBarStack; 219 QWidgetStack *tabBarStack;
221 OTabBar *tabBar; 220 OTabBar *tabBar;
222 QComboBox *tabList; 221 QComboBox *tabList;
223 222