Skip to content

Commit

Permalink
Use macro define to determine default geometry column name in gui
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@5110 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
pramsey committed Jan 9, 2010
1 parent 83e0a4a commit caf508c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loader/shp2pgsql-gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ pgui_create_main_window(const SHPCONNECTIONCONFIG *conn)
label = gtk_label_new("Geometry Column:");
entry_config_geocolumn = gtk_entry_new();
gtk_entry_set_width_chars(GTK_ENTRY(entry_config_geocolumn), text_width);
gtk_entry_set_text(GTK_ENTRY(entry_config_geocolumn), "the_geom");
gtk_entry_set_text(GTK_ENTRY(entry_config_geocolumn), GEOMETRY_DEFAULT);
gtk_table_attach_defaults(GTK_TABLE(table_config), label, 2, 3, 1, 2 );
gtk_table_attach_defaults(GTK_TABLE(table_config), entry_config_geocolumn, 3, 4, 1, 2 );

Expand Down

0 comments on commit caf508c

Please sign in to comment.