File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ # ################################################################
2
+ #
3
+ # QMAKE Project File for mapserver export Gui
4
+ #
5
+ # Tim Sutton 2006
6
+ #
7
+ # ################################################################
8
+ TEMPLATE = app
9
+ TARGET = ms_export
10
+ CONFIG += debug_and_release
11
+ CONFIG += build_all
12
+ CONFIG (debug , debug |release ){
13
+ TARGET = $$member (TARGET , 0 )-debug
14
+ }
15
+ LIBS += -lpython -L/usr/lib
16
+ mac :INCLUDEPATH += /System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/
17
+ linux-g++:INCLUDEPATH += /usr/include/python
18
+ QT += gui
19
+ QT += qt3support
20
+
21
+
22
+ FORMS += qgsmapserverexportbase.ui
23
+
24
+ HEADERS += qgsmapserverexport.h
25
+
26
+ SOURCES += main.cpp \
27
+ msexport_wrap.cxx \
28
+ qgsmapserverexport.cpp
Original file line number Diff line number Diff line change @@ -28,17 +28,16 @@ email : sherman at mrcc.com
28
28
#include < qstring.h>
29
29
#include < QWidget>
30
30
#include " qgsmapserverexport.h"
31
- #include " ui_qgsmapserverexportbase.h"
32
31
33
32
34
33
// constructor
35
34
QgsMapserverExport::QgsMapserverExport (QWidget * parent, Qt::WFlags fl)
36
35
: QDialog(parent, fl)
37
36
{
37
+ setupUi (this );
38
38
// initialize python
39
39
initPy ();
40
40
41
- setupUi (this );
42
41
43
42
}
44
43
You can’t perform that action at this time.
0 commit comments