diff --git a/addons/google_map/__init__.py b/addons/google_map/__init__.py index aa250662a11..d276c1debeb 100644 --- a/addons/google_map/__init__.py +++ b/addons/google_map/__init__.py @@ -19,7 +19,6 @@ # ############################################################################## -import google_map -import wizard +import google_map_launch # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_map/__openerp__.py b/addons/google_map/__openerp__.py index 423351a53ef..48c393409e4 100644 --- a/addons/google_map/__openerp__.py +++ b/addons/google_map/__openerp__.py @@ -34,7 +34,9 @@ Using this you can directly open Google Map from the URL widget.""", 'images': ['images/google_map.jpeg'], 'depends': ['base'], 'init_xml': [], - 'update_xml': ['google_map_wizard.xml', 'google_map_view.xml'], + 'update_xml': [ + 'google_map_view.xml', + ], 'demo_xml': [], 'installable': True, 'active': False, diff --git a/addons/google_map/google_map.py b/addons/google_map/google_map.py deleted file mode 100644 index e8e22516db2..00000000000 --- a/addons/google_map/google_map.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -from osv import fields,osv,orm - -class res_partner_address(osv.osv): - _description ='Partner Contact' - _name = 'res.partner.address' - _inherit = 'res.partner.address' - _columns = { - } -res_partner_address() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/google_map/google_map_view.xml b/addons/google_map/google_map_view.xml index 7909b271cd4..3911d879427 100644 --- a/addons/google_map/google_map_view.xml +++ b/addons/google_map/google_map_view.xml @@ -12,8 +12,8 @@