aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/texteditoractionhandler.h
diff options
context:
space:
mode:
authorKostas Karanikolas <kostas@quadra>2010-11-27 14:02:20 +0900
committerLeandro Melo <leandro.melo@nokia.com>2011-03-17 10:51:46 +0100
commit8ae4317394a3cb7acd085fee78c0c348d4e7ceb4 (patch)
treed656da2c044d295fab14655d66dc6527ee95c6f9 /src/plugins/texteditor/texteditoractionhandler.h
parent420345380ab9baaa2c7e548512d7d7bb5c09722f (diff)
Added "Copy Line" keyboard command and associated action
Merge-request: 223 Reviewed-by: Leandro Melo
Diffstat (limited to 'src/plugins/texteditor/texteditoractionhandler.h')
-rw-r--r--src/plugins/texteditor/texteditoractionhandler.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/texteditor/texteditoractionhandler.h b/src/plugins/texteditor/texteditoractionhandler.h
index fb7789a17f..f2a7839b2f 100644
--- a/src/plugins/texteditor/texteditoractionhandler.h
+++ b/src/plugins/texteditor/texteditoractionhandler.h
@@ -102,6 +102,7 @@ private slots:
void fold();
void unfold();
void cutLine();
+ void copyLine();
void deleteLine();
void selectEncoding();
void increaseFontSize();
@@ -165,6 +166,7 @@ private:
QAction *m_foldAction;
QAction *m_unfoldAction;
QAction *m_cutLineAction;
+ QAction *m_copyLineAction;
QAction *m_deleteLineAction;
QAction *m_selectEncodingAction;
QAction *m_increaseFontSizeAction;