fixed crash in build > customise

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@78 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
spog 2006-06-04 08:44:25 +00:00
parent 541e8259e7
commit 8feb702d62
3 changed files with 7 additions and 2 deletions

View file

@ -1,6 +1,10 @@
This is the changelog for developers, != changelog for the end user This is the changelog for developers, != changelog for the end user
that we distribute with the binaries. (see changelog) that we distribute with the binaries. (see changelog)
04/06/2006
SPoG
- Fixed crash when deleting items from Build menu.
03/06/2006 03/06/2006
SPoG SPoG
- Changed doom3 entity creation to add model key for brush-entities. - Changed doom3 entity creation to add model key for brush-entities.

View file

@ -52,7 +52,8 @@
GenerateMapFile="FALSE" GenerateMapFile="FALSE"
SubSystem="2" SubSystem="2"
EntryPointSymbol="mainCRTStartup" EntryPointSymbol="mainCRTStartup"
TargetMachine="1"/> TargetMachine="1"
FixedBaseAddress="1"/>
<Tool <Tool
Name="VCMIDLTool"/> Name="VCMIDLTool"/>
<Tool <Tool

View file

@ -784,7 +784,7 @@ gboolean project_cell_edited(GtkCellRendererText* cell, gchar* path_string, gcha
return FALSE; return FALSE;
} }
gboolean project_key_press(GtkWidget* widget, GdkEventKey* event, GtkListStore* store, ProjectList* projectList) gboolean project_key_press(GtkWidget* widget, GdkEventKey* event, ProjectList* projectList)
{ {
Project& project = projectList->m_project; Project& project = projectList->m_project;