diff -r 84f76a3876d7 -r 21379539d952 mainwindow.cpp --- a/mainwindow.cpp Tue Jul 04 12:10:56 2006 +0000 +++ b/mainwindow.cpp Wed Jul 05 10:29:54 2006 +0000 @@ -683,6 +683,7 @@ a = new QAction(QPixmap(), tr( "Edit URL"+QString("...") ), this); a->setStatusTip ( tr( "Edit URL" ) ); a->setShortcut (Qt::SHIFT + Qt::CTRL+Qt::Key_U ); + a->setShortcutContext (Qt::WindowShortcut); a->setEnabled (false); actionListBranches.append(a); connect( a, SIGNAL( activated() ), this, SLOT( editURL() ) ); @@ -1561,17 +1562,6 @@ saveImageFormatMenu->addAction ( a ); } -/* FIXME not needed any longer - Q3StrList fmt = QImageWriter::supportedImageFormats(); - for (const char* f = fmt.first(); f; f = fmt.next()) - { - saveImageFormatMenu->insertItem( f ); - exportImageFormatMenu->insertItem( f ); - } -*/ -// connect( saveImageFormatMenu, SIGNAL( activated(int) ), this, SLOT( editSaveImage(int ) ) ); -// connect( exportImageFormatMenu, SIGNAL( activated(int) ), this, SLOT( fileExportImage(int ) ) ); - floatimageContextMenu->addSeparator(); actionEditCopy->addTo( floatimageContextMenu ); actionEditCut->addTo( floatimageContextMenu );