GTK: Rename the main GtkBuilder file for consistency

git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@978 a31d4220-a93d-0410-bf67-fe4944624d44
This commit is contained in:
bgk 2011-02-20 08:33:01 +00:00
parent 33e95d70ee
commit 9d6e6eef22
2 changed files with 3 additions and 3 deletions

View File

@ -85,14 +85,14 @@ int main(int argc, char * argv[])
Gtk::Window::set_default_icon_name("vbam");
std::string sGladeFile = VBA::Window::sGetUiFilePath("vbam.glade");
std::string sGtkBuilderFile = VBA::Window::sGetUiFilePath("vbam.ui");
Glib::RefPtr<Gtk::Builder> poXml;
try
{
poXml = Gtk::Builder::create();
poXml->add_from_file(sGladeFile, "accelgroup1");
poXml->add_from_file(sGladeFile, "MainWindow");
poXml->add_from_file(sGtkBuilderFile, "accelgroup1");
poXml->add_from_file(sGtkBuilderFile, "MainWindow");
}
catch (const Gtk::BuilderError & e)
{