Skip to content

Commit 95e93f8

Browse files
committed
Drop QScintilla2 from window title
1 parent 44e543c commit 95e93f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/gui/qgscodeeditor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ QgsCodeEditor::QgsCodeEditor( QWidget *parent, QString title, bool folding, bool
2929
{
3030
if ( !parent && mWidgetTitle.isEmpty() )
3131
{
32-
setWindowTitle( "QScintilla2 Text Editor" );
32+
setWindowTitle( "Text Editor" );
3333
setMinimumSize( 800, 300 );
3434
}
3535
else

src/gui/qgscodeeditorpython.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ QgsCodeEditorPython::QgsCodeEditorPython( QWidget *parent, const QList<QString>
3131
{
3232
if ( !parent )
3333
{
34-
setTitle( tr( "Qscintilla2 Python Editor" ) );
34+
setTitle( tr( "Python Editor" ) );
3535
}
3636
setSciLexerPython();
3737
}

src/gui/qgscodeeditorsql.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ QgsCodeEditorSQL::QgsCodeEditorSQL( QWidget *parent )
2727
{
2828
if ( !parent )
2929
{
30-
setTitle( tr( "Qscintilla2 SQL Editor" ) );
30+
setTitle( tr( "SQL Editor" ) );
3131
}
3232
setMarginVisible( false );
3333
setFoldingVisible( true );

0 commit comments

Comments
 (0)