diff -r c48bb42fb977 -r b98c1793bb8b mainwindow.cpp --- a/mainwindow.cpp Wed Apr 07 10:45:24 2010 +0000 +++ b/mainwindow.cpp Fri Apr 09 14:16:02 2010 +0000 @@ -475,17 +475,11 @@ a = new QAction( "Webpage (HTML)...",this ); a->setShortcut (Qt::ALT + Qt::Key_X); //Export HTML - a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (XHTML)","status tip file menu"))); + a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (HTML)","status tip file menu"))); switchboard.addConnection(a,tr("File","Shortcut group")); connect( a, SIGNAL( triggered() ), this, SLOT( fileExportHTML() ) ); fileExportMenu->addAction (a); - a = new QAction( "Webpage (XHTML)...",this ); //Export XHTML - - //a->setShortcut (Qt::ALT + Qt::SHIFT + Qt::Key_X); a->setStatusTip ( tr( "Export as %1","status tip file menu").arg(tr(" webpage (XHTML)","status tip file menu"))); - connect( a, SIGNAL( triggered() ), this, SLOT( fileExportXHTML() ) ); - fileExportMenu->addAction (a); - a = new QAction( "Text (A&O report)...", this); a->setStatusTip ( tr( "Export as %1").arg("A&O report "+tr("(still experimental)" ))); switchboard.addConnection(a,tr("File","Shortcut group")); @@ -2448,13 +2442,6 @@ if (m) m->exportHTML(); } - -void Main::fileExportXHTML() -{ - VymModel *m=currentModel(); - if (m) m->exportXHTML(); -} - void Main::fileExportImage() { VymModel *m=currentModel();