diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-02-25 00:19:27 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-02-25 00:19:27 +0100 |
commit | 9d20e99fffeebe67fd8ff27cb4f9e353892f5190 (patch) | |
tree | 23462fac2e862a2f408a26f94ab024c4174c3458 /src/mainview.h | |
parent | rekonq 0.6.82 (diff) | |
download | rekonq-9d20e99fffeebe67fd8ff27cb4f9e353892f5190.tar.xz |
Coding style
Diffstat (limited to 'src/mainview.h')
-rw-r--r-- | src/mainview.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/src/mainview.h b/src/mainview.h index 8b239325..acc2d8c9 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -67,7 +67,10 @@ class REKONQ_TESTS_EXPORT MainView : public KTabWidget public: MainView(MainWindow *parent); - inline StackedUrlBar *widgetBar() const { return m_widgetBar; } + inline StackedUrlBar *widgetBar() const + { + return m_widgetBar; + } TabBar *tabBar() const; @@ -83,7 +86,10 @@ public: */ void updateTabBar(); - inline QToolButton *addTabButton() const { return m_addTabButton; } + inline QToolButton *addTabButton() const + { + return m_addTabButton; + } /** * This function creates a new empty tab @@ -94,11 +100,14 @@ public: */ WebTab *newWebTab(bool focused = true); - inline QList<HistoryItem> recentlyClosedTabs() { return m_recentlyClosedTabs; } + inline QList<HistoryItem> recentlyClosedTabs() + { + return m_recentlyClosedTabs; + } Q_SIGNALS: // tabs change when: - // - current tab change + // - current tab change // - one tab is closed // - one tab is added // - one tab is updated (eg: changes url) |