mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 12:01:10 +00:00
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:
parent
541e8259e7
commit
8feb702d62
3 changed files with 7 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -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.
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue