X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fappwidget.hh;h=5595e88e3a71a25c1c9319944758d0503e59afce;hb=bfea000a7407e51b5659590415e410a47f6f046b;hp=7a5cf74ded68b457a2eed1274356ca58e1e10a20;hpb=8f8acc24933830d4f5784616b9b0c5896bde0b93;p=chaz%2Fopenbox diff --git a/otk/appwidget.hh b/otk/appwidget.hh index 7a5cf74d..5595e88e 100644 --- a/otk/appwidget.hh +++ b/otk/appwidget.hh @@ -11,20 +11,17 @@ class Application; class AppWidget : public Widget { public: - AppWidget(Application *app, Direction direction = Horizontal, - Cursor cursor = 0, int bevel_width = 1); + AppWidget(Application *app, Direction direction = Horizontal, int bevel = 0); virtual ~AppWidget(); - virtual void show(void); - virtual void hide(void); + virtual void show(); + virtual void hide(); virtual void clientMessageHandler(const XClientMessageEvent &e); private: Application *_application; - Atom _wm_protocols; - Atom _wm_delete; }; }