#include <sys/types.h>
#include <dirent.h>
#include <stdlib.h>
#include <vector>
#include <algorithm>
#include <libgnome/gnome-help.h>
#include <gtkmm/messagedialog.h>
#include <libgnome/gnome-i18n.h>
#include <libgnomeuimm/about.h>
#include <glibmm/fileutils.h>
#include <assa/Logger.h>
#include <assa/AutoPtr.h>
#include <assa/Assert.h>
#include <assa/CmdLineOpts.h>
#include <assa/Fork.h>
#include "gWavMerger.h"
#include "MainWindow.h"
#include "PrefWindow.h"
#include "FileOpen.h"
#include "MergeDialog.h"
#include "LoadProgress.h"
#include "NameUtils.h"
Include dependency graph for MainWindow.cpp:
Go to the source code of this file.
Functions | |
void | destroy_handler () |
|
Definition at line 62 of file MainWindow.cpp. Referenced by MainWindow::exit_cb.
00063 { 00064 trace("[static] destroy_handler"); 00065 00066 /* From Gtk 1.2 man pages: 00067 * "Makes the innermost invocation of the main loop return when it 00068 * regains control." 00069 */ 00070 Gtk::Main::quit (); 00071 } |