-rw-r--r-- | core/apps/textedit/textedit.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index 2f62789..797c61b 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp | |||
@@ -248,18 +248,17 @@ TextEdit::TextEdit( QWidget *parent, const char *name, WFlags f ) | |||
248 | a->addTo( edit ); | 248 | a->addTo( edit ); |
249 | #endif | 249 | #endif |
250 | 250 | ||
251 | a = new QAction( tr( "Find..." ), Resource::loadPixmap( "find" ), | ||
252 | QString::null, 0, this, 0 ); | ||
253 | connect( a, SIGNAL( activated() ), this, SLOT( editFind() ) ); | ||
254 | edit->insertSeparator(); | ||
255 | a->addTo( bar ); | ||
256 | a->addTo( edit ); | ||
257 | |||
258 | a = new QAction( tr( "Goto Line..." ), Resource::loadPixmap( "find" ), | 251 | a = new QAction( tr( "Goto Line..." ), Resource::loadPixmap( "find" ), |
259 | QString::null, 0, this, 0 ); | 252 | QString::null, 0, this, 0 ); |
260 | connect( a, SIGNAL( activated() ), this, SLOT( gotoLine() ) ); | 253 | connect( a, SIGNAL( activated() ), this, SLOT( gotoLine() ) ); |
254 | edit->insertSeparator(); | ||
261 | a->addTo( edit ); | 255 | a->addTo( edit ); |
262 | 256 | ||
257 | a = new QAction( tr( "Find..." ), Resource::loadPixmap( "find" ), | ||
258 | QString::null, 0, this, 0 ); | ||
259 | connect( a, SIGNAL( activated() ), this, SLOT( editFind() ) ); | ||
260 | a->addTo( bar ); | ||
261 | a->addTo( edit ); | ||
263 | 262 | ||
264 | zin = new QAction( tr("Zoom in"), QString::null, 0, this, 0 ); | 263 | zin = new QAction( tr("Zoom in"), QString::null, 0, this, 0 ); |
265 | connect( zin, SIGNAL( activated() ), this, SLOT( zoomIn() ) ); | 264 | connect( zin, SIGNAL( activated() ), this, SLOT( zoomIn() ) ); |