aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-state.h
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-12-16 16:12:40 +0800
committerXan Lopez <xan@igalia.com>2012-12-16 16:12:56 +0800
commit13dd37b49c84e15470a8cba37f08f34a2d9c87d3 (patch)
tree7515e56b698c771678d9440fa828a2f73ddff8f8 /lib/ephy-state.h
parentc51b5079f189c060a1d3a68f5730025aa73a89f0 (diff)
downloadgsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar.gz
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar.bz2
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar.lz
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar.xz
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.tar.zst
gsoc2013-epiphany-13dd37b49c84e15470a8cba37f08f34a2d9c87d3.zip
ephy-state: use new coding style
Diffstat (limited to 'lib/ephy-state.h')
-rw-r--r--lib/ephy-state.h36
1 files changed, 17 insertions, 19 deletions
diff --git a/lib/ephy-state.h b/lib/ephy-state.h
index 8646c1b58..fdeeb8ee5 100644
--- a/lib/ephy-state.h
+++ b/lib/ephy-state.h
@@ -1,3 +1,4 @@
+/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2001 Matthew Mueller
* Copyright © 2002 Jorn Baayen <jorn@nl.linux.org>
@@ -32,27 +33,24 @@ G_BEGIN_DECLS
typedef enum
{
- EPHY_STATE_WINDOW_SAVE_NONE = 0,
- EPHY_STATE_WINDOW_SAVE_SIZE = 1 << 0,
- EPHY_STATE_WINDOW_SAVE_POSITION = 1 << 1
+ EPHY_STATE_WINDOW_SAVE_NONE = 0,
+ EPHY_STATE_WINDOW_SAVE_SIZE = 1 << 0,
+ EPHY_STATE_WINDOW_SAVE_POSITION = 1 << 1
} EphyStateWindowFlags;
-void ephy_state_add_window (GtkWidget *window,
- const char *name,
- int default_width,
- int default_heigth,
- gboolean maximize,
- EphyStateWindowFlags flags);
-
-void ephy_state_add_paned (GtkWidget *paned,
- const char *name,
- int default_width);
-
-void ephy_state_add_expander (GtkWidget *widget,
- const char *name,
- gboolean default_state);
-
-void ephy_state_save (void);
+void ephy_state_add_window (GtkWidget *window,
+ const char *name,
+ int default_width,
+ int default_heigth,
+ gboolean maximize,
+ EphyStateWindowFlags flags);
+void ephy_state_add_paned (GtkWidget *paned,
+ const char *name,
+ int default_width);
+void ephy_state_add_expander (GtkWidget *widget,
+ const char *name,
+ gboolean default_state);
+void ephy_state_save (void);
G_END_DECLS