diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-01-30 15:02:04 +0100 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-02-16 17:15:10 +0000 |
commit | c1dbcfb204cb919e5f7e70ea72ebf147f2bea04e (patch) | |
tree | e5dc718693a799f0c73c43385e24565e6e86f718 /src/plugins/diffeditor/selectabletexteditorwidget.cpp | |
parent | f10fd0ef5e88ee3ff3ff2d311952c6c860e0bfba (diff) | |
download | qt-creator-c1dbcfb204cb919e5f7e70ea72ebf147f2bea04e.tar.gz |
DiffEditor: Move SelectableTextEditorWidget to internal
Change-Id: I4fefca2c780f17c68e73bbdaee9528c8945c00e4
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'src/plugins/diffeditor/selectabletexteditorwidget.cpp')
-rw-r--r-- | src/plugins/diffeditor/selectabletexteditorwidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/diffeditor/selectabletexteditorwidget.cpp b/src/plugins/diffeditor/selectabletexteditorwidget.cpp index 19418521b6..cdbbd18dbc 100644 --- a/src/plugins/diffeditor/selectabletexteditorwidget.cpp +++ b/src/plugins/diffeditor/selectabletexteditorwidget.cpp @@ -35,6 +35,7 @@ #include <QTextBlock> namespace DiffEditor { +namespace Internal { SelectableTextEditorWidget::SelectableTextEditorWidget(Core::Id id, QWidget *parent) : TextEditorWidget(parent) @@ -157,5 +158,5 @@ void SelectableTextEditorWidget::paintBlock(QPainter *painter, TextEditorWidget::paintBlock(painter, block, offset, newSelections, clipRect); } +} // namespace Internal } // namespace DiffEditor - |