diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2013-08-23 14:33:43 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2013-08-26 10:00:44 +0200 |
commit | 66596852202f49189677f19f96d753fecce66a22 (patch) | |
tree | eb1f98df21eb2169f0ac4481879de0b32d2c2483 /src/plugins/macros/texteditormacrohandler.cpp | |
parent | 60cde65ba8cc4baf54c409d6ae46dce83957cd0f (diff) | |
download | qt-creator-66596852202f49189677f19f96d753fecce66a22.tar.gz |
Macros: Remove export macros and move code into Internal namespace
Change-Id: I2f5aa2b15235dfa7f3f002703771dd902d67199e
Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
Diffstat (limited to 'src/plugins/macros/texteditormacrohandler.cpp')
-rw-r--r-- | src/plugins/macros/texteditormacrohandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/macros/texteditormacrohandler.cpp b/src/plugins/macros/texteditormacrohandler.cpp index 7e6e4f0eec..6a9aa1affa 100644 --- a/src/plugins/macros/texteditormacrohandler.cpp +++ b/src/plugins/macros/texteditormacrohandler.cpp @@ -68,7 +68,7 @@ TextEditorMacroHandler::TextEditorMacroHandler(): this, SLOT(closeEditor(Core::IEditor*))); } -void TextEditorMacroHandler::startRecording(Macros::Macro *macro) +void TextEditorMacroHandler::startRecording(Macro *macro) { IMacroHandler::startRecording(macro); if (isRecording() && m_currentEditor && m_currentEditor->widget()) @@ -78,7 +78,7 @@ void TextEditorMacroHandler::startRecording(Macros::Macro *macro) Core::ActionManager::command(TextEditor::Constants::COMPLETE_THIS)->shortcut()->blockSignals(true); } -void TextEditorMacroHandler::endRecordingMacro(Macros::Macro *macro) +void TextEditorMacroHandler::endRecordingMacro(Macro *macro) { if (m_currentEditor && m_currentEditor->widget()) m_currentEditor->widget()->removeEventFilter(this); |