- disabled main window context menu (more annoying than useful)

This commit is contained in:
Christophe Dumez 2007-04-10 10:56:18 +00:00
commit 1deb7b88bc
3 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
- BUGFIX: Window can now stay maximized on exit - BUGFIX: Window can now stay maximized on exit
- BUGFIX: Use PKGCONFIG again for configuring libtorrent - BUGFIX: Use PKGCONFIG again for configuring libtorrent
- BUGFIX: Allow to compile with libtorrent v0.11 - BUGFIX: Allow to compile with libtorrent v0.11
- BUGFIX: Disabled context menu in toolbar (makes no sense) - BUGFIX: Disabled main window context menu (annoying)
- I18N: Added Japanese translation - I18N: Added Japanese translation
* Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1 * Wed Apr 04 2007 - Christophe Dumez <chris@qbittorrent.org> - v0.9.1

View file

@ -159,7 +159,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent){
connect(downloadList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayDLListMenu(const QPoint&))); connect(downloadList, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayDLListMenu(const QPoint&)));
connect(actionWebsite, SIGNAL(triggered()), this, SLOT(openqBTHomepage())); connect(actionWebsite, SIGNAL(triggered()), this, SLOT(openqBTHomepage()));
connect(actionBugReport, SIGNAL(triggered()), this, SLOT(openqBTBugTracker())); connect(actionBugReport, SIGNAL(triggered()), this, SLOT(openqBTBugTracker()));
connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayGUIMenu(const QPoint&))); //connect(this, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayGUIMenu(const QPoint&)));
connect(actionPreview_file, SIGNAL(triggered()), this, SLOT(previewFileSelection())); connect(actionPreview_file, SIGNAL(triggered()), this, SLOT(previewFileSelection()));
connect(infoBar, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayInfoBarMenu(const QPoint&))); connect(infoBar, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayInfoBarMenu(const QPoint&)));
// Create tray icon // Create tray icon

View file

@ -11,7 +11,7 @@ TARGET = qbittorrent
CONFIG += qt thread x11 CONFIG += qt thread x11
# Update this VERSION for each release # Update this VERSION for each release
DEFINES += VERSION=\\\"v0.9.2rc3\\\" DEFINES += VERSION=\\\"v0.9.2rc4\\\"
DEFINES += VERSION_MAJOR=0 DEFINES += VERSION_MAJOR=0
DEFINES += VERSION_MINOR=9 DEFINES += VERSION_MINOR=9
DEFINES += VERSION_BUGFIX=2 DEFINES += VERSION_BUGFIX=2