debugger/texteditor: Add font and size option to debugger panels, QTCREATORBUG-189

This commit is contained in:
hjk
2010-02-12 14:15:20 +01:00
parent 4f13bac035
commit 2ba777415b
3 changed files with 30 additions and 0 deletions

View File

@@ -72,6 +72,7 @@
#include <texteditor/basetextmark.h>
#include <texteditor/itexteditor.h>
#include <texteditor/texteditorconstants.h>
#include <texteditor/texteditorplugin.h>
#include <utils/qtcassert.h>
#include <utils/styledbar.h>
@@ -994,6 +995,11 @@ bool DebuggerPlugin::initialize(const QStringList &arguments, QString *errorMess
// Connections
//
// TextEditor
connect(TextEditor::TextEditorPlugin::instance(),
SIGNAL(fontSettingsChanged(TextEditor::FontSettings)),
m_manager, SLOT(fontSettingsChanged(TextEditor::FontSettings)));
// ProjectExplorer
connect(sessionManager(), SIGNAL(sessionLoaded()),
m_manager, SLOT(sessionLoaded()));