-rw-r--r-- | noncore/apps/opie-write/mainwindow.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/noncore/apps/opie-write/mainwindow.cpp b/noncore/apps/opie-write/mainwindow.cpp index bcafd16..4a49abf 100644 --- a/noncore/apps/opie-write/mainwindow.cpp +++ b/noncore/apps/opie-write/mainwindow.cpp @@ -173,5 +173,5 @@ void MainWindow::setupActions() a->addTo( file ); - a = new QAction( tr( "Undo" ), Resource::loadIconSet("opie-write/undo"), + a = new QAction( tr( "Undo" ), Resource::loadIconSet("undo"), QString::null, 0, this, "editUndo" ); connect( a, SIGNAL( activated() ), this, SLOT( editUndo() ) ); @@ -179,5 +179,5 @@ void MainWindow::setupActions() a->addTo( tbEdit ); a->addTo( edit ); - a = new QAction( tr( "Redo" ), Resource::loadIconSet("opie-write/redo"), + a = new QAction( tr( "Redo" ), Resource::loadIconSet("redo"), QString::null, 0, this, "editRedo" ); connect( a, SIGNAL( activated() ), this, SLOT( editRedo() ) ); @@ -187,5 +187,5 @@ void MainWindow::setupActions() edit->insertSeparator(); - + a = new QAction( tr( "Copy" ), Resource::loadIconSet("copy"), QString::null, 0, this, "editCopy" ); @@ -266,5 +266,5 @@ void MainWindow::setupActions() Qt3::QTextEdit *MainWindow::currentEditor() const { - return editor; + return editor; } @@ -508,5 +508,5 @@ void MainWindow::hideEditTools( void ) } - + void MainWindow::save() { |