author | llornkcor <llornkcor> | 2003-04-12 22:56:47 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-04-12 22:56:47 (UTC) |
commit | 6d62efcd8964194cae47dc3dfe71b7cc41cbf3e2 (patch) (side-by-side diff) | |
tree | 1a53c8037aed1209e613e098b7f2e4aec726bdff | |
parent | de26954aa6d25dcd6673dc2b38ed5f5f9f665e53 (diff) | |
download | opie-6d62efcd8964194cae47dc3dfe71b7cc41cbf3e2.zip opie-6d62efcd8964194cae47dc3dfe71b7cc41cbf3e2.tar.gz opie-6d62efcd8964194cae47dc3dfe71b7cc41cbf3e2.tar.bz2 |
hide about gizmo
-rw-r--r-- | core/apps/textedit/textedit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 749e0ac..21bf4b3 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -303,51 +303,51 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) desktopAction->addTo( advancedMenu); filePermAction = new QAction( tr("File Permissions"), QString::null, 0, this, 0 ); connect( filePermAction, SIGNAL( toggled(bool) ), this, SLOT( doFilePerms(bool) ) ); filePermAction->setToggleAction(true); filePermAction->addTo( advancedMenu); searchBarAction = new QAction( tr("Search Bar Open"), QString::null, 0, this, 0 ); connect( searchBarAction, SIGNAL( toggled(bool) ), this, SLOT( setSearchBar(bool) ) ); searchBarAction->setToggleAction(true); searchBarAction->addTo( advancedMenu); nAutoSave = new QAction( tr("Auto Save 5 min."), QString::null, 0, this, 0 ); connect( nAutoSave, SIGNAL( toggled(bool) ), this, SLOT( doTimer(bool) ) ); nAutoSave->setToggleAction(true); nAutoSave->addTo( advancedMenu); - font->insertSeparator(); + //font->insertSeparator(); - font->insertItem(tr("About"), this, SLOT( doAbout()) ); + //font->insertItem(tr("About"), this, SLOT( doAbout()) ); mb->insertItem( tr( "File" ), file ); mb->insertItem( tr( "Edit" ), edit ); mb->insertItem( tr( "View" ), font ); searchBar = new QPEToolBar(this); addToolBar( searchBar, "Search", QMainWindow::Top, true ); searchBar->setHorizontalStretchable( true ); searchEdit = new QLineEdit( searchBar, "searchEdit" ); searchBar->setStretchableWidget( searchEdit ); connect( searchEdit, SIGNAL( textChanged( const QString & ) ), this, SLOT( search() ) ); a = new QAction( tr( "Find Next" ), Resource::loadPixmap( "next" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( findNext() ) ); a->addTo( searchBar ); a->addTo( edit ); a = new QAction( tr( "Close Find" ), Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); connect( a, SIGNAL( activated() ), this, SLOT( findClose() ) ); |