diff options
author | lionelc <lionelc@lionelc.(none)> | 2010-08-17 15:19:33 +0200 |
---|---|---|
committer | lionelc <lionelc@lionelc.(none)> | 2010-08-17 15:19:33 +0200 |
commit | ae36abefdc165a5a7365eb7af79f67da05f15ed5 (patch) | |
tree | 145426cef690aa8afecc181404ebe109f3636eb2 /src/searchengine.h | |
parent | Merge commit 'refs/merge-requests/172' of git://gitorious.org/rekonq/mainline... (diff) | |
download | rekonq-ae36abefdc165a5a7365eb7af79f67da05f15ed5.tar.xz |
search engine review
Diffstat (limited to 'src/searchengine.h')
-rw-r--r-- | src/searchengine.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/searchengine.h b/src/searchengine.h index 2e30e056..e57b1a5c 100644 --- a/src/searchengine.h +++ b/src/searchengine.h @@ -41,22 +41,18 @@ class SearchEngine { public: - + static void reload(); static QString delimiter(); static KService::Ptr defaultEngine(); static KService::List favorites(); static KService::Ptr fromString(QString text); static QString buildQuery(KService::Ptr engine, QString text); - static KService::Ptr defaultWS(); - - static void loadDelimiter(); - static void loadFavorites(); - static void loadDefaultWS(); private: + static bool m_loaded; static QString m_delimiter; static KService::List m_favorites; - static KService::Ptr m_defaultWS; + static KService::Ptr m_defaultEngine; }; #endif |