Macros: Remove export macros and move code into Internal namespace

Change-Id: I2f5aa2b15235dfa7f3f002703771dd902d67199e
Reviewed-by: Nicolas Arnaud-Cormos <nicolas@kdab.com>
This commit is contained in:
Tobias Hunger
2013-08-23 14:33:43 +02:00
parent 60cde65ba8
commit 6659685220
18 changed files with 34 additions and 84 deletions

View File

@@ -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);