X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdialog.cpp;h=cc4c1bf6a51f67cd1b00ecd46a9fc3cb2fda0c90;hb=b51fd94242badcd3807a39c339979f4f358120cd;hp=5eea60964ec3d694ff94b001cc8a7702473824d8;hpb=531232cf05838b79c1f8f36c8103730e32dfa23d;p=libs%2Fgltk.git diff --git a/source/dialog.cpp b/source/dialog.cpp index 5eea609..cc4c1bf 100644 --- a/source/dialog.cpp +++ b/source/dialog.cpp @@ -1,19 +1,10 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2010 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include "button.h" #include "dialog.h" namespace Msp { namespace GLtk { -Dialog::Dialog(const Resources &r): - Widget(r), - Panel(r), +Dialog::Dialog(): stale(false) { } @@ -41,7 +32,7 @@ void Dialog::response(int code) { on_response(code); signal_response.emit(code); - stale=true; + stale = true; } } // namespace GLtk