summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 9ef423c..4cf1b07 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -616,49 +616,49 @@ void TextEdit::setSearchBar(bool b) {
616 searchBar->show(); 616 searchBar->show();
617 else 617 else
618 searchBar->hide(); 618 searchBar->hide();
619 editor->setFocus(); 619 editor->setFocus();
620} 620}
621 621
622void TextEdit::fileNew() { 622void TextEdit::fileNew() {
623// if( !bFromDocView ) { 623// if( !bFromDocView ) {
624// saveAs(); 624// saveAs();
625// } 625// }
626 newFile(DocLnk()); 626 newFile(DocLnk());
627} 627}
628 628
629void TextEdit::fileOpen() { 629void TextEdit::fileOpen() {
630 QMap<QString, QStringList> map; 630 QMap<QString, QStringList> map;
631 map.insert(tr("All"), QStringList() ); 631 map.insert(tr("All"), QStringList() );
632 QStringList text; 632 QStringList text;
633 text << "text/*"; 633 text << "text/*";
634 map.insert(tr("Text"), text ); 634 map.insert(tr("Text"), text );
635 text << "*"; 635 text << "*";
636 map.insert(tr("All"), text ); 636 map.insert(tr("All"), text );
637 QString str = OFileDialog::getOpenFileName( 2, 637 QString str = OFileDialog::getOpenFileName( 2,
638 QPEApplication::documentDir(), 638 QPEApplication::documentDir(),
639 QString::null, map); 639 QString::null, map);
640 if( QFile(str).exists()) 640 if( QFile(str).exists() && !QFileInfo(str).isDir() )
641 openFile( str ); 641 openFile( str );
642 else 642 else
643 updateCaption(); 643 updateCaption();
644} 644}
645 645
646void TextEdit::doSearchBar() { 646void TextEdit::doSearchBar() {
647 if(!useSearchBar) 647 if(!useSearchBar)
648 searchBar->hide(); 648 searchBar->hide();
649 else 649 else
650 searchBar->show(); 650 searchBar->show();
651} 651}
652 652
653#if 0 653#if 0
654void TextEdit::slotFind() { 654void TextEdit::slotFind() {
655 FindDialog frmFind( tr("Text Editor"), this ); 655 FindDialog frmFind( tr("Text Editor"), this );
656 connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)), 656 connect( &frmFind, SIGNAL(signalFindClicked(const QString &, bool, bool, int)),
657 editor, SLOT(slotDoFind( const QString&,bool,bool))); 657 editor, SLOT(slotDoFind( const QString&,bool,bool)));
658 658
659 //case sensitive, backwards, [category] 659 //case sensitive, backwards, [category]
660 660
661 connect( editor, SIGNAL(notFound()), 661 connect( editor, SIGNAL(notFound()),
662 &frmFind, SLOT(slotNotFound()) ); 662 &frmFind, SLOT(slotNotFound()) );
663 connect( editor, SIGNAL(searchWrapped()), 663 connect( editor, SIGNAL(searchWrapped()),
664 &frmFind, SLOT(slotWrapAround()) ); 664 &frmFind, SLOT(slotWrapAround()) );