forked from CEN-RA/Plugin_QGIS
Supprimer copie_dialog.py.bak
This commit is contained in:
parent
1f91f96bac
commit
de4d120f67
@ -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.<objectname>, 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)
|
|
||||||
Loading…
x
Reference in New Issue
Block a user