-rw-r--r-- | core/apps/textedit/textedit.cpp | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 834971a..8004771 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -270,3 +270,2 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) -// a = new QAction( tr( "Save" ), QPixmap(( const char** ) filesave_xpm ) , QString::null, 0, this, 0 ); @@ -406,11 +405,3 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) updateCaption(); - if( qApp->argc() > 1 ) { - for (int i=1;i< qApp->argc();i++) { - QString tmp; - currentFileName = tmp.sprintf("%s",qApp->argv()[i]); - qDebug(currentFileName); - setDocument( currentFileName ); - } - } - else + fileNew(); @@ -628,3 +619,3 @@ void TextEdit::newFile( const DocLnk &f ) doc = new DocLnk(nf); -// updateCaption(); + updateCaption(currentFileName); } @@ -774,2 +765,3 @@ void TextEdit::updateCaption( const QString &name ) } + setCaption( s + " - " + tr("Text Editor") ); |