From d5b790d2405e4328e7e9c115758d7f95b0fcaae1 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 9 Dec 2007 10:03:26 +0000 Subject: [PATCH] - Tagged rc10 release --- TODO | 1 + src/GUI.cpp | 2 +- src/src.pro | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index 46aed7d24..556a98338 100644 --- a/TODO +++ b/TODO @@ -60,4 +60,5 @@ rc9->rc10 changelog: - BUGFIX: Limit search engine plugins to 10 result pages - BUGFIX: Fixed nbResults != 0 when clearing results while a search is running - BUGFIX: Fixed possible problem when closing to systray and cancelling app exit +- BUGFIX: Fixed preview when path contains spaces - COSMETIC: Use more skin colors instead of hard coded ones diff --git a/src/GUI.cpp b/src/GUI.cpp index 656a39893..a9969a1ed 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -392,7 +392,7 @@ void GUI::on_actionExit_triggered() { } void GUI::previewFile(QString filePath) { - QDesktopServices::openUrl(filePath); + QDesktopServices::openUrl(QString("file://")+filePath); } unsigned int GUI::getCurrentTabIndex() const{ diff --git a/src/src.pro b/src/src.pro index 8906c9185..c0cb57779 100644 --- a/src/src.pro +++ b/src/src.pro @@ -11,7 +11,7 @@ TARGET = qbittorrent CONFIG += qt thread x11 network # Update this VERSION for each release -DEFINES += VERSION=\\\"v1.0.0rc9\\\" +DEFINES += VERSION=\\\"v1.0.0rc10\\\" DEFINES += VERSION_MAJOR=1 DEFINES += VERSION_MINOR=0 DEFINES += VERSION_BUGFIX=0