Some typos.

This commit is contained in:
Martin Rotter 2017-07-27 21:13:50 +02:00
parent c1b23b6f6d
commit 5d47c53b3c
2 changed files with 7 additions and 7 deletions

View file

@ -148,6 +148,10 @@ class Application : public QtSingleApplication {
void eliminateFirstRun();
void eliminateFirstRun(const QString& version);
#if defined(USE_WEBENGINE)
NetworkUrlInterceptor* m_urlInterceptor;
#endif
FeedReader* m_feedReader;
// This read-write lock is used by application on its close.
@ -164,10 +168,6 @@ class Application : public QtSingleApplication {
// action will be allowed to lock for reading.
QScopedPointer<Mutex> m_updateFeedsLock;
#if defined(USE_WEBENGINE)
NetworkUrlInterceptor* m_urlInterceptor;
#endif
QList<QAction*> m_userActions;
FormMain* m_mainForm;
SystemTrayIcon* m_trayIcon;

View file

@ -258,10 +258,10 @@ DVALUE(char*) Database::ActiveDriverDef = APP_DB_SQLITE_DRIVER;
DKEY Keyboard::ID = "keyboard";
// Web browser.
DKEY Browser::ID = "browser";
DKEY Browser::ID = "browser";
KEY Browser::SendDNT = "send_dnt";
VALUE(bool) Browser::SendDNTDef = false;
DKEY Browser::SendDNT = "send_dnt";
VALUE(bool) Browser::SendDNTDef = false;
DKEY Browser::OpenLinksInExternalBrowserRightAway = "open_link_externally_wo_confirmation";
DVALUE(bool) Browser::OpenLinksInExternalBrowserRightAwayDef = false;