aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoakim Verona2012-09-19 07:48:05 +0200
committerJoakim Verona2012-09-19 07:48:05 +0200
commit99def29614db90aa00e3334c062a81d2d5dc9495 (patch)
treeb6df2925d3ed5e5fba17a8b0aa57d4dd829ac248 /src
parent6c86337db3f2b22977d7b94b054458a2d446c504 (diff)
parent2fd5e67d925be2b5fc945be5aaba27904cc65022 (diff)
downloademacs-99def29614db90aa00e3334c062a81d2d5dc9495.tar.gz
emacs-99def29614db90aa00e3334c062a81d2d5dc9495.zip
not compiling yet
Diffstat (limited to 'src')
-rw-r--r--src/emacsgtkfixed.c26
-rw-r--r--src/emacsgtkfixed.h2
2 files changed, 14 insertions, 14 deletions
diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c
index d23f3e21f24..c190862ab7d 100644
--- a/src/emacsgtkfixed.c
+++ b/src/emacsgtkfixed.c
@@ -35,26 +35,26 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
35# pragma GCC diagnostic ignored "-Wunused-local-typedefs" 35# pragma GCC diagnostic ignored "-Wunused-local-typedefs"
36#endif 36#endif
37 37
38#define EMACS_TYPE_FIXED emacs_fixed_get_type () 38//#define EMACS_TYPE_FIXED emacs_fixed_get_type ()
39#define EMACS_FIXED(obj) \ 39/* #define EMACS_FIXED(obj) \ */
40 G_TYPE_CHECK_INSTANCE_CAST (obj, EMACS_TYPE_FIXED, EmacsFixed) 40/* G_TYPE_CHECK_INSTANCE_CAST (obj, EMACS_TYPE_FIXED, EmacsFixed) */
41 41
42typedef struct _EmacsFixed EmacsFixed; 42typedef struct _EmacsFixed EmacsFixed;
43typedef struct _EmacsFixedPrivate EmacsFixedPrivate; 43typedef struct _EmacsFixedPrivate EmacsFixedPrivate;
44typedef struct _EmacsFixedClass EmacsFixedClass; 44typedef struct _EmacsFixedClass EmacsFixedClass;
45 45
46struct _EmacsFixed 46/* struct _EmacsFixed */
47{ 47/* { */
48 GtkFixed container; 48/* GtkFixed container; */
49 49
50 /*< private >*/ 50/* /\*< private >*\/ */
51 EmacsFixedPrivate *priv; 51/* EmacsFixedPrivate *priv; */
52}; 52/* }; */
53 53
54struct _EmacsFixedClass 54/* struct _EmacsFixedClass */
55{ 55/* { */
56 GtkFixedClass parent_class; 56/* GtkFixedClass parent_class; */
57}; 57/* }; */
58 58
59struct _EmacsFixedPrivate 59struct _EmacsFixedPrivate
60{ 60{
diff --git a/src/emacsgtkfixed.h b/src/emacsgtkfixed.h
index 90fb37e521b..b18c541081f 100644
--- a/src/emacsgtkfixed.h
+++ b/src/emacsgtkfixed.h
@@ -34,7 +34,7 @@ struct frame;
34#define EMACS_IS_FIXED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EMACS_TYPE_FIXED)) 34#define EMACS_IS_FIXED_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EMACS_TYPE_FIXED))
35#define EMACS_FIXED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMACS_TYPE_FIXED, EmacsFixedClass)) 35#define EMACS_FIXED_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EMACS_TYPE_FIXED, EmacsFixedClass))
36 36
37typedef struct _EmacsFixed EmacsFixed; 37//typedef struct _EmacsFixed EmacsFixed;
38typedef struct _EmacsFixedPrivate EmacsFixedPrivate; 38typedef struct _EmacsFixedPrivate EmacsFixedPrivate;
39typedef struct _EmacsFixedClass EmacsFixedClass; 39typedef struct _EmacsFixedClass EmacsFixedClass;
40 40