┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincontextmenu.cpp
diff options
context:
space:
mode:
authorMontel Laurent <[email protected]>2011-07-31 13:33:56 +0200
committerMontel Laurent <[email protected]>2011-07-31 13:33:56 +0200
commit08d655c2bc107449ee322f8b826710b7e690950b (patch)
tree6268fe56b9d4bb7fdad68841836c3265fb178284 /src/dolphincontextmenu.cpp
parentf23e9496f303995557b744c03178f5dbd9b35016 (diff)
normalize signals/slots
Diffstat (limited to 'src/dolphincontextmenu.cpp')
-rw-r--r--src/dolphincontextmenu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp
index 2eb4e92d0..617189715 100644
--- a/src/dolphincontextmenu.cpp
+++ b/src/dolphincontextmenu.cpp
@@ -86,8 +86,8 @@ DolphinContextMenu::DolphinContextMenu(DolphinMainWindow* parent,
if (m_keyInfo->isKeyPressed(Qt::Key_Shift) || m_keyInfo->isKeyLatched(Qt::Key_Shift)) {
m_shiftPressed = true;
}
- connect(m_keyInfo, SIGNAL(keyPressed(Qt::Key, bool)),
- this, SLOT(slotKeyModifierPressed(Qt::Key, bool)));
+ connect(m_keyInfo, SIGNAL(keyPressed(Qt::Key,bool)),
+ this, SLOT(slotKeyModifierPressed(Qt::Key,bool)));
}
m_removeAction = new QAction(this);