forked from qt-creator/qt-creator
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user