X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/235ee3a1e830ab839163ad2585c11d760bcd841c..f29a7129de56edca96ea8ef58576898c1e52ed6f:/Constructor/propertywnd.cpp diff --git a/Constructor/propertywnd.cpp b/Constructor/propertywnd.cpp index 7c0c000..b233ca9 100644 --- a/Constructor/propertywnd.cpp +++ b/Constructor/propertywnd.cpp @@ -1,10 +1,5 @@ -//propertywnd.cpp - #include "propertywnd.h" - -PropertyWnd::PropertyWnd() -{ -} +#include "item.h" PropertyWnd::PropertyWnd(BaseObjectType* cobject, const Glib::RefPtr& refGlade): Gtk::Window(cobject) { @@ -14,6 +9,7 @@ PropertyWnd::PropertyWnd(BaseObjectType* cobject, const Glib::RefPtrsignal_clicked().connect(SigC::slot(*this, &PropertyWnd::on_btn_cancel_clicked)); btn_accept->signal_clicked().connect(SigC::slot(*this, &PropertyWnd::on_btn_accept_clicked)); + btn_apply->signal_clicked().connect(SigC::slot(*this, &PropertyWnd::on_btn_apply_clicked)); } PropertyWnd::~PropertyWnd() @@ -29,3 +25,7 @@ void PropertyWnd::on_btn_cancel_clicked() void PropertyWnd::on_btn_accept_clicked() { } + +void PropertyWnd::on_btn_apply_clicked() +{ +}