Skip to content

Commit

Permalink
Drop QScintilla2 from window title
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jul 20, 2014
1 parent 44e543c commit 95e93f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gui/qgscodeeditor.cpp
Expand Up @@ -29,7 +29,7 @@ QgsCodeEditor::QgsCodeEditor( QWidget *parent, QString title, bool folding, bool
{
if ( !parent && mWidgetTitle.isEmpty() )
{
setWindowTitle( "QScintilla2 Text Editor" );
setWindowTitle( "Text Editor" );
setMinimumSize( 800, 300 );
}
else
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscodeeditorpython.cpp
Expand Up @@ -31,7 +31,7 @@ QgsCodeEditorPython::QgsCodeEditorPython( QWidget *parent, const QList<QString>
{
if ( !parent )
{
setTitle( tr( "Qscintilla2 Python Editor" ) );
setTitle( tr( "Python Editor" ) );
}
setSciLexerPython();
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgscodeeditorsql.cpp
Expand Up @@ -27,7 +27,7 @@ QgsCodeEditorSQL::QgsCodeEditorSQL( QWidget *parent )
{
if ( !parent )
{
setTitle( tr( "Qscintilla2 SQL Editor" ) );
setTitle( tr( "SQL Editor" ) );
}
setMarginVisible( false );
setFoldingVisible( true );
Expand Down

0 comments on commit 95e93f8

Please sign in to comment.