Minor changes in gui.cpp.

This commit is contained in:
David Capello 2011-03-08 23:25:06 -03:00
parent e0edf5625f
commit 69a3070018

View File

@ -667,9 +667,9 @@ void save_window_pos(JWidget window, const char *section)
set_config_rect(section, "WindowPos", window->getBounds()); set_config_rect(section, "WindowPos", window->getBounds());
} }
JWidget load_widget(const char* filename, const char* name) Widget* load_widget(const char* filename, const char* name)
{ {
JWidget widget; Widget* widget;
char buf[512]; char buf[512];
bool found = false; bool found = false;