From de4d120f678046ac3ee828b82138cdf8e2e30e37 Mon Sep 17 00:00:00 2001 From: Tom LAVEILLE Date: Thu, 1 Aug 2024 14:43:22 +0200 Subject: [PATCH] Supprimer copie_dialog.py.bak --- copie_dialog.py.bak | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 copie_dialog.py.bak diff --git a/copie_dialog.py.bak b/copie_dialog.py.bak deleted file mode 100644 index a951555c..00000000 --- a/copie_dialog.py.bak +++ /dev/null @@ -1,41 +0,0 @@ -# -*- coding: utf-8 -*- -""" -/*************************************************************************** - CopieDialog - A QGIS plugin - Permet la copie d'une table dans une base PostGis - ------------------- - begin : 2015-04-13 - git sha : $Format:%H$ - copyright : (C) 2015 by Guillaume COSTES - CEN Rhône-Alpes - email : guillaume.costes@espaces-naturels.fr - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ -""" - -import os - -from PyQt4 import QtGui, uic - -FORM_CLASS, _ = uic.loadUiType(os.path.join( - os.path.dirname(__file__), 'copie_dialog_base.ui')) - - -class CopieDialog(QtGui.QDialog, FORM_CLASS): - def __init__(self, parent=None): - """Constructor.""" - super(CopieDialog, self).__init__(parent) - # Set up the user interface from Designer. - # After setupUI you can access any designer object by doing - # self., and you can use autoconnect slots - see - # http://qt-project.org/doc/qt-4.8/designer-using-a-ui-file.html - # #widgets-and-dialogs-with-auto-connect - self.setupUi(self)