aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar wodim2011-09-20 22:20:25 +0000
committerGravatar wodim2011-09-20 22:20:25 +0000
commit351b8ab53324382dc246bfb6478e6ce11e3deabf (patch)
tree988391615da37692660cb467f07311e7ec9b6191 /src
parentsplash for the 4.1.3 (diff)
downloadKVIrc-351b8ab53324382dc246bfb6478e6ce11e3deabf.tar.gz
KVIrc-351b8ab53324382dc246bfb6478e6ce11e3deabf.tar.bz2
KVIrc-351b8ab53324382dc246bfb6478e6ce11e3deabf.zip
fix paste with shift+ins
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5969 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
-rw-r--r--src/kvilib/config/kvi_shortcuts.h1
-rw-r--r--src/kvirc/ui/KviInputEditor.cpp1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/kvilib/config/kvi_shortcuts.h b/src/kvilib/config/kvi_shortcuts.h
index 6d786b46b..4c286b635 100644
--- a/src/kvilib/config/kvi_shortcuts.h
+++ b/src/kvilib/config/kvi_shortcuts.h
@@ -172,7 +172,6 @@
#define KVI_SHORTCUTS_WIN_NEXT_HIGHLIGHT Qt::AltModifier + Qt::Key_PageDown
#define KVI_SHORTCUTS_WIN_MAXIMIZE Qt::ControlModifier + Qt::Key_Up
#define KVI_SHORTCUTS_WIN_MINIMIZE Qt::ControlModifier + Qt::Key_Down
-#define KVI_SHORTCUTS_INPUT_PASTE_2 Qt::ShiftModifier + Qt::Key_Insert
#define KVI_SHORTCUTS_WIN_PREV_PAGE QKeySequence::MoveToPreviousPage // Qt::Key_PageUp
#define KVI_SHORTCUTS_WIN_NEXT_PAGE QKeySequence::MoveToNextPage // Qt::Key_PageDown
#define KVI_SHORTCUTS_WIN_PREV_LINE Qt::ShiftModifier + Qt::Key_PageUp
diff --git a/src/kvirc/ui/KviInputEditor.cpp b/src/kvirc/ui/KviInputEditor.cpp
index b1feb900f..552d5091e 100644
--- a/src/kvirc/ui/KviInputEditor.cpp
+++ b/src/kvirc/ui/KviInputEditor.cpp
@@ -1359,7 +1359,6 @@ void KviInputEditor::installShortcuts()
KviShortcut::create(KVI_SHORTCUTS_INPUT_COPY,this,SLOT(copyInternal()),0,Qt::WidgetShortcut);
KviShortcut::create(KVI_SHORTCUTS_INPUT_CUT,this,SLOT(cutInternal()),0,Qt::WidgetShortcut);
KviShortcut::create(KVI_SHORTCUTS_INPUT_PASTE,this,SLOT(pasteInternal()),0,Qt::WidgetShortcut);
- KviShortcut::create(KVI_SHORTCUTS_INPUT_PASTE_2,this,SLOT(pasteInternal()),0,Qt::WidgetShortcut);
KviShortcut::create(KVI_SHORTCUTS_INPUT_UNDO,this,SLOT(undoInternal()),0,Qt::WidgetShortcut);
KviShortcut::create(KVI_SHORTCUTS_INPUT_REDO,this,SLOT(redoInternal()),0,Qt::WidgetShortcut);
KviShortcut::create(KVI_SHORTCUTS_INPUT_SELECT_ALL,this,SLOT(selectAllInternal()),0,Qt::WidgetShortcut);