Change MyDialog to MyPrefs
This commit is contained in:
parent
ab1c88fc10
commit
f4d34a4886
|
@ -21,8 +21,8 @@ pkg_check_modules (GTKMM3 REQUIRED gtkmm-3.0)
|
|||
include_directories (${GTKMM3_INCLUDE_DIRS})
|
||||
link_directories (${GTKMM3_LIBRARY_DIRS})
|
||||
|
||||
set(SOURCES src/main.cc src/MyWin.cc src/MyDialog.cc
|
||||
src/xerelease.cc src/xeapi.cc ../cfgfile2/cfgfile.cc)
|
||||
set(SOURCES src/main.cc src/MyWin.cc src/MyPrefs.cc
|
||||
src/xerelease.cc src/xeapi.cc)
|
||||
|
||||
#Compile resources with GCR_CMake
|
||||
set(RESOURCE_LIST
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "MyDialog.hh"
|
||||
#include "MyPrefs.hh"
|
||||
|
||||
MyPrefs::MyPrefs(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &ref_builder)
|
||||
: Gtk::Box(cobject),
|
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <gtkmm.h>
|
||||
#include "MyDialog.hh"
|
||||
#include "MyPrefs.hh"
|
||||
|
||||
class MyWin : public Gtk::ApplicationWindow
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue