GTK: Rename the main GtkBuilder file for consistency

This commit is contained in:
bgk 2011-02-20 08:33:01 +00:00
parent 9962e4e679
commit de6db92249
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)
{