From 54a0d23f27256cfba86f0c9a5161b86916dbfdb6 Mon Sep 17 00:00:00 2001 From: Serge Noiraud Date: Fri, 20 Feb 2009 21:56:43 +0000 Subject: [PATCH] GeoView : too many simplification after pylint : missing argument error. svn: r12058 --- src/DataViews/GeoView.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/DataViews/GeoView.py b/src/DataViews/GeoView.py index ac4dabfc2..a6a7ed38b 100644 --- a/src/DataViews/GeoView.py +++ b/src/DataViews/GeoView.py @@ -815,35 +815,35 @@ class GeoView(HtmlView): self.createmapstraction(displaytype) self.open("file://"+self.htmlfile) - def select_openstreetmap_map(self): + def select_openstreetmap_map(self,handle): """ Specifies openstreetmap is the default map """ self.usedmap = "openstreetmap" self.change_map("openstreetmap") - def select_openlayers_map(self): + def select_openlayers_map(self,handle): """ Specifies openstreetmap is the default map """ self.usedmap = "openlayers" self.change_map("openlayers") - def select_google_map(self): + def select_google_map(self,handle): """ Specifies google is the default map """ self.usedmap = "google" self.change_map("google") - def select_yahoo_map(self): + def select_yahoo_map(self,handle): """ Specifies yahoo map is the default map """ self.usedmap = "yahoo" self.change_map("yahoo") - def select_microsoft_map(self): + def select_microsoft_map(self,handle): """ Specifies microsoft is the default map """