From e6fc5e7d38862f137f06b92f302fab319d2bd919 Mon Sep 17 00:00:00 2001 From: rduivenvoorde Date: Tue, 8 Jul 2008 10:45:42 +0000 Subject: [PATCH] fix for #1139 wrong qgis-user-mailinglist-url in Help/About box git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8735 c8812cc2-4d05-0410-92ff-de0c093fc19c --- README | 2 +- src/app/qgsabout.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 7b6f25967f0..3596b8b587e 100644 --- a/README +++ b/README @@ -53,7 +53,7 @@ HELP US -- Please submit bug reports using the QGIS bug tracker at: SUPPORT - You can get support in the following ways: 1. Using the QGIS community site at http://qgis.org 2. Joining the qgis-users mailing list at: - http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user + http://lists.osgeo.org/mailman/listinfo/qgis-user 3. Using IRC by joining the #qgis channel on irc.freenode.net. Please wait around for a response to your question as many folks on the channel are doing other things and it may take a diff --git a/src/app/qgsabout.cpp b/src/app/qgsabout.cpp index 1570dd15427..4c0506404e2 100644 --- a/src/app/qgsabout.cpp +++ b/src/app/qgsabout.cpp @@ -225,7 +225,7 @@ void QgsAbout::on_listBox1_currentItemChanged(QListWidgetItem *theItem) void QgsAbout::on_btnQgisUser_clicked() { // find a browser - QString url = "http://lists.qgis.org/cgi-bin/mailman/listinfo/qgis-user"; + QString url = "http://lists.osgeo.org/mailman/listinfo/qgis-user"; openUrl(url); }