summaryrefslogtreecommitdiff
path: root/openbox/popup.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-07-10 17:03:05 +0000
committerDana Jansens <danakj@orodu.net>2003-07-10 17:03:05 +0000
commit122d55fbadea0409fbc902a1740e1c8ff3aecd88 (patch)
tree26117e28e5424588ea699e098c084fd563c49a15 /openbox/popup.h
parent59f318e897a301a40fb46fadbc4b825ccf86c0ba (diff)
prefixing and capitalizing the StackLayer -> ObStackingLayer enum.
less includes in headers for less rebuilding on changes
Diffstat (limited to 'openbox/popup.h')
-rw-r--r--openbox/popup.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/popup.h b/openbox/popup.h
index 7a138bd0..3707c8cb 100644
--- a/openbox/popup.h
+++ b/openbox/popup.h
@@ -1,10 +1,10 @@
#ifndef __popup_h
#define __popup_h
-#include "client.h"
-
#include <glib.h>
+struct _ObClientIcon;
+
typedef struct _ObPopup Popup;
Popup *popup_new(gboolean hasicon);
@@ -21,7 +21,7 @@ void popup_position(Popup *self, gint gravity, gint x, gint y);
void popup_size(Popup *self, gint w, gint h);
void popup_size_to_string(Popup *self, gchar *text);
-void popup_show(Popup *self, gchar *text, ObClientIcon *icon);
+void popup_show(Popup *self, gchar *text, struct _ObClientIcon *icon);
void popup_hide(Popup *self);
#endif