diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-20 02:22:24 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-20 02:22:24 +0200 |
commit | fdf53891eac6ae85959ccf2edacfe354ad3f1c7d (patch) | |
tree | 95ad845acb6b6d1e55ab317325db1cf12660ffe3 | |
parent | Merge commit 'refs/merge-requests/1549' of git://gitorious.org/rekonq/mainlin... (diff) | |
download | rekonq-fdf53891eac6ae85959ccf2edacfe354ad3f1c7d.tar.xz |
rekonq 0.2.59
A lot of merged code and some trivial bug fixed
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 | ||||
-rw-r--r-- | src/previewimage.cpp | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f6c91d19..ea7ce3a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ PROJECT( rekonq ) # rekonq info SET(REKONQ_MAJOR_VERSION "0") SET(REKONQ_MINOR_VERSION "2") -SET(REKONQ_PATCH_VERSION "58") +SET(REKONQ_PATCH_VERSION "59") SET(REKONQ_VERSION_STR "${REKONQ_MAJOR_VERSION}.${REKONQ_MINOR_VERSION}.${REKONQ_PATCH_VERSION}" diff --git a/src/main.cpp b/src/main.cpp index 4518d8cf..1f9fa636 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -38,7 +38,7 @@ static const char description[] = I18N_NOOP("A lightweight Web Browser for KDE based on WebKit"); -static const char version[] = "0.2.58"; +static const char version[] = "0.2.59"; int main(int argc, char **argv) diff --git a/src/previewimage.cpp b/src/previewimage.cpp index b78f9ae5..ab0a05e6 100644 --- a/src/previewimage.cpp +++ b/src/previewimage.cpp @@ -41,7 +41,6 @@ PreviewImage::PreviewImage(const QString &url, const QString &pos) if(QFile::exists(path)) { - kDebug() << "exists! Loading it..."; m_pixmap.load(path); setPixmap( m_pixmap ); } |