diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-18 22:50:51 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-18 22:50:51 +0800 |
commit | 00d56cd32c5d0a7f49567d5241ba0d6fd80940bb (patch) | |
tree | 6e3e6e92e18788d0d5231291e8b66a4b601bb923 /widgets/text | |
parent | b03af89f65d23f28a29ecea7171d0f89ac3b9bca (diff) | |
download | gsoc2013-evolution-00d56cd32c5d0a7f49567d5241ba0d6fd80940bb.tar.gz gsoc2013-evolution-00d56cd32c5d0a7f49567d5241ba0d6fd80940bb.tar.zst gsoc2013-evolution-00d56cd32c5d0a7f49567d5241ba0d6fd80940bb.zip |
Use G_BEGIN_DECLS / G_END_DECLS macros.
Diffstat (limited to 'widgets/text')
-rw-r--r-- | widgets/text/e-reflow-model.h | 8 | ||||
-rw-r--r-- | widgets/text/e-reflow.h | 9 |
2 files changed, 4 insertions, 13 deletions
diff --git a/widgets/text/e-reflow-model.h b/widgets/text/e-reflow-model.h index d606edf8cd..ebbf3c1f75 100644 --- a/widgets/text/e-reflow-model.h +++ b/widgets/text/e-reflow-model.h @@ -27,9 +27,7 @@ #include <glib-object.h> #include <libgnomecanvas/gnome-canvas.h> -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ +G_BEGIN_DECLS #define E_REFLOW_MODEL_TYPE (e_reflow_model_get_type ()) #define E_REFLOW_MODEL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_REFLOW_MODEL_TYPE, EReflowModel)) @@ -105,8 +103,6 @@ void e_reflow_model_item_removed (EReflowModel *e_reflow_m void e_reflow_model_item_changed (EReflowModel *e_reflow_model, gint n); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +G_END_DECLS #endif /* _E_REFLOW_MODEL_H_ */ diff --git a/widgets/text/e-reflow.h b/widgets/text/e-reflow.h index 89ceb032b1..234dbc16a2 100644 --- a/widgets/text/e-reflow.h +++ b/widgets/text/e-reflow.h @@ -28,10 +28,7 @@ #include <misc/e-selection-model.h> #include <e-util/e-sorter-array.h> -#ifdef __cplusplus -extern "C" { -#pragma } -#endif /* __cplusplus */ +G_BEGIN_DECLS /* EReflow - A canvas item container. * @@ -139,8 +136,6 @@ struct _EReflowClass */ GType e_reflow_get_type (void); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +G_END_DECLS #endif /* __E_REFLOW_H__ */ |