diff options
-rw-r--r-- | src/mainview.h | 2 | ||||
-rw-r--r-- | src/settings.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/mainview.h b/src/mainview.h index 147096d9..6a5d5f80 100644 --- a/src/mainview.h +++ b/src/mainview.h @@ -97,6 +97,8 @@ public slots: /** * Core browser slot. This create a new tab with a WebView inside * for browsing. + * + * @return a pointer to the new WebView */ WebView *newWebView(); void loadUrlInCurrentTab(const KUrl &url); diff --git a/src/settings.h b/src/settings.h index 1232ed64..f1b6fa29 100644 --- a/src/settings.h +++ b/src/settings.h @@ -27,9 +27,9 @@ // Forward Declarations class QWidget; - class Private; + class SettingsDialog : public KConfigDialog { Q_OBJECT |