diff options
Diffstat (limited to 'src/webpage.h')
-rw-r--r-- | src/webpage.h | 38 |
1 files changed, 9 insertions, 29 deletions
diff --git a/src/webpage.h b/src/webpage.h index 3b2d37ad..31f42184 100644 --- a/src/webpage.h +++ b/src/webpage.h @@ -52,35 +52,15 @@ public: explicit WebPage(QWidget *parent = 0); ~WebPage(); - inline bool hasNetworkAnalyzerEnabled() const - { - return _networkAnalyzer; - }; - - inline void enableNetworkAnalyzer(bool b) - { - _networkAnalyzer = b; - }; - - inline bool isOnRekonqPage() const - { - return _isOnRekonqPage; - }; - - inline void setIsOnRekonqPage(bool b) - { - _isOnRekonqPage = b; - }; - - inline KUrl loadingUrl() - { - return _loadingUrl; - }; - - inline QString suggestedFileName() - { - return _suggestedFileName; - }; + bool hasNetworkAnalyzerEnabled() const; + void enableNetworkAnalyzer(bool b); + + bool isOnRekonqPage() const; + void setIsOnRekonqPage(bool b); + + KUrl loadingUrl(); + + QString suggestedFileName(); bool hasSslValid() const; |