diff options
| author | Joakim Verona | 2012-09-19 07:48:05 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-09-19 07:48:05 +0200 |
| commit | 99def29614db90aa00e3334c062a81d2d5dc9495 (patch) | |
| tree | b6df2925d3ed5e5fba17a8b0aa57d4dd829ac248 /src | |
| parent | 6c86337db3f2b22977d7b94b054458a2d446c504 (diff) | |
| parent | 2fd5e67d925be2b5fc945be5aaba27904cc65022 (diff) | |
| download | emacs-99def29614db90aa00e3334c062a81d2d5dc9495.tar.gz emacs-99def29614db90aa00e3334c062a81d2d5dc9495.zip | |
not compiling yet
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacsgtkfixed.c | 26 | ||||
| -rw-r--r-- | src/emacsgtkfixed.h | 2 |
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 | ||
| 42 | typedef struct _EmacsFixed EmacsFixed; | 42 | typedef struct _EmacsFixed EmacsFixed; |
| 43 | typedef struct _EmacsFixedPrivate EmacsFixedPrivate; | 43 | typedef struct _EmacsFixedPrivate EmacsFixedPrivate; |
| 44 | typedef struct _EmacsFixedClass EmacsFixedClass; | 44 | typedef struct _EmacsFixedClass EmacsFixedClass; |
| 45 | 45 | ||
| 46 | struct _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 | ||
| 54 | struct _EmacsFixedClass | 54 | /* struct _EmacsFixedClass */ |
| 55 | { | 55 | /* { */ |
| 56 | GtkFixedClass parent_class; | 56 | /* GtkFixedClass parent_class; */ |
| 57 | }; | 57 | /* }; */ |
| 58 | 58 | ||
| 59 | struct _EmacsFixedPrivate | 59 | struct _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 | ||
| 37 | typedef struct _EmacsFixed EmacsFixed; | 37 | //typedef struct _EmacsFixed EmacsFixed; |
| 38 | typedef struct _EmacsFixedPrivate EmacsFixedPrivate; | 38 | typedef struct _EmacsFixedPrivate EmacsFixedPrivate; |
| 39 | typedef struct _EmacsFixedClass EmacsFixedClass; | 39 | typedef struct _EmacsFixedClass EmacsFixedClass; |
| 40 | 40 | ||