Skip to content

Commit 0a9bf95

Browse files
committed
[GRASS] removed old editing
1 parent 49401d5 commit 0a9bf95

26 files changed

+2
-4863
lines changed

src/plugins/grass/CMakeLists.txt

-8
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,13 @@ ENDIF (WIN32)
2222
SET (GRASS_PLUGIN_SRCS
2323
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassplugin.cpp
2424
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassselect.cpp
25-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassedit.cpp
26-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassedittools.cpp
2725
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrasstools.cpp
2826
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmapcalc.cpp
2927
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmodule.cpp
3028
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleinput.cpp
3129
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleoptions.cpp
3230
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleparam.cpp
3331
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassnewmapset.cpp
34-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassattributes.cpp
3532
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassregion.cpp
3633
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassutils.cpp
3734
)
@@ -40,30 +37,25 @@ SET (GRASS_PLUGIN_SRCS
4037
SET (GRASS_PLUGIN_UIS
4138
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrasstoolsbase.ui
4239
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassselectbase.ui
43-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrasseditbase.ui
4440
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmapcalcbase.ui
4541
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmodulebase.ui
4642
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassnewmapsetbase.ui
47-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassattributesbase.ui
4843
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassregionbase.ui
4944
${CMAKE_CURRENT_SOURCE_DIR}/../../ui/qgsprojectionselectorbase.ui
5045
)
5146

5247
SET (GRASS_PLUGIN_MOC_HDRS
5348
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassplugin.h
5449
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassselect.h
55-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassedit.h
5650
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrasstools.h
5751
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmapcalc.h
5852
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmodule.h
5953
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleinput.h
6054
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleoptions.h
6155
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassmoduleparam.h
6256
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassnewmapset.h
63-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassattributes.h
6457
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassregion.h
6558
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassutils.h
66-
${CMAKE_CURRENT_SOURCE_DIR}/qgsgrassedittools.h
6759
)
6860

6961
IF(NOT WIN32)

src/plugins/grass/qgsgrass_plugin.qrc

-13
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,18 @@
22
<qresource prefix="/images/themes/default/grass">
33
<file alias="closebutton.png">themes/default/closebutton.png</file>
44
<file alias="darkclosebutton.png">themes/default/darkclosebutton.png</file>
5-
<file alias="grass_add_vertex.png">themes/default/grass_add_vertex.png</file>
65
<file alias="grass_clear_input.png">themes/default/grass_clear_input.png</file>
7-
<file alias="grass_close_edit.png">themes/default/grass_close_edit.png</file>
86
<file alias="grass_close_mapset.png">themes/default/grass_close_mapset.png</file>
9-
<file alias="grass_delete_line.png">themes/default/grass_delete_line.png</file>
10-
<file alias="grass_delete_vertex.png">themes/default/grass_delete_vertex.png</file>
11-
<file alias="grass_edit_attributes.png">themes/default/grass_edit_attributes.png</file>
12-
<file alias="grass_edit.png">themes/default/grass_edit.png</file>
137
<file alias="grass_module_error.png">themes/default/grass_module_error.png</file>
148
<file alias="grass_module_warning.png">themes/default/grass_module_warning.png</file>
15-
<file alias="grass_move_line.png">themes/default/grass_move_line.png</file>
16-
<file alias="grass_move_vertex.png">themes/default/grass_move_vertex.png</file>
17-
<file alias="grass_new_boundary.png">themes/default/grass_new_boundary.png</file>
18-
<file alias="grass_new_centroid.png">themes/default/grass_new_centroid.png</file>
19-
<file alias="grass_new_line.png">themes/default/grass_new_line.png</file>
209
<file alias="grass_new_mapset.png">themes/default/grass_new_mapset.png</file>
21-
<file alias="grass_new_point.png">themes/default/grass_new_point.png</file>
2210
<file alias="grass_new_vector_layer.png">themes/default/grass_new_vector_layer.png</file>
2311
<file alias="grass_open_mapset.png">themes/default/grass_open_mapset.png</file>
2412
<file alias="grass_options_region.png">themes/default/grass_options_region.png</file>
2513
<file alias="grass_region_edit.png">themes/default/grass_region_edit.png</file>
2614
<file alias="grass_region.png">themes/default/grass_region.png</file>
2715
<file alias="grass_set_region.png">themes/default/grass_set_region.png</file>
2816
<file alias="grass_shell.png">themes/default/grass_shell.png</file>
29-
<file alias="grass_split_line.png">themes/default/grass_split_line.png</file>
3017
<file alias="grass_tools.png">themes/default/grass_tools.png</file>
3118
<file alias="mapcalc_add_connection.png">themes/default/mapcalc_add_connection.png</file>
3219
<file alias="mapcalc_add_constant.png">themes/default/mapcalc_add_constant.png</file>

0 commit comments

Comments
 (0)