Fixed some typos.

This commit is contained in:
Martin Rotter 2013-08-31 08:30:09 +02:00
parent a63b55f725
commit 2f949604c1
3 changed files with 2 additions and 3 deletions

View File

@ -234,7 +234,7 @@ set(APP_HEADERS
# CORE headers.
src/core/settings.h
src/core/basenetworkaccessmanager.h
src/core/webBrowsernetworkaccessmanager.h
src/core/webbrowsernetworkaccessmanager.h
src/core/basewebpage.h
)

View File

@ -114,7 +114,7 @@ void ShortcutButton::keyReleaseEvent(QKeyEvent *event) {
Qt::KeyboardModifiers new_modifiers = event->modifiers() &
(Qt::SHIFT | Qt::CTRL | Qt::ALT | Qt::META);
if ((new_modifiers & m_catcher->m_modifierKeys) < m_catcher->m_modifierKeys) {
if (((uint) new_modifiers & m_catcher->m_modifierKeys) < m_catcher->m_modifierKeys) {
m_catcher->m_modifierKeys = new_modifiers;
m_catcher->controlModifierlessTimout();
m_catcher->updateDisplayShortcut();

View File

@ -114,7 +114,6 @@ void SystemTrayIcon::show() {
// Delay avoids race conditions and tray icon is properly displayed.
qDebug("Showing tray icon with 1000 ms delay.");
QTimer::singleShot(1000,
Qt::CoarseTimer,
this, SLOT(showPrivate()));
#endif
}