diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-10 11:15:23 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-08-06 20:06:45 +0200 |
commit | e5e46f489e9d89bdecb4c4948b0d9627e33555cc (patch) | |
tree | 4b8e1b316787b0a7e1346a1bd6930c293639171f /plugins/wavecom/mm-plugin-wavecom.h | |
parent | 7e9d3e4b685f0e92979af2f595be6cd336b5dbd6 (diff) |
core: merge `MMPluginBase' and `MMPlugin'
There's no real point in maintaining a separate `MMPlugin' interface, as all the
plugins will inherit from `MMPluginBase', so just merge them and simplify
everything.
Diffstat (limited to 'plugins/wavecom/mm-plugin-wavecom.h')
-rw-r--r-- | plugins/wavecom/mm-plugin-wavecom.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/wavecom/mm-plugin-wavecom.h b/plugins/wavecom/mm-plugin-wavecom.h index 9b355d5f..c1d76309 100644 --- a/plugins/wavecom/mm-plugin-wavecom.h +++ b/plugins/wavecom/mm-plugin-wavecom.h @@ -25,7 +25,7 @@ #ifndef MM_PLUGIN_WAVECOM_H #define MM_PLUGIN_WAVECOM_H -#include "mm-plugin-base.h" +#include "mm-plugin.h" #define MM_TYPE_PLUGIN_WAVECOM (mm_plugin_wavecom_get_type ()) #define MM_PLUGIN_WAVECOM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_PLUGIN_WAVECOM, MMPluginWavecom)) @@ -35,11 +35,11 @@ #define MM_PLUGIN_WAVECOM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MM_TYPE_PLUGIN_WAVECOM, MMPluginWavecomClass)) typedef struct { - MMPluginBase parent; + MMPlugin parent; } MMPluginWavecom; typedef struct { - MMPluginBaseClass parent; + MMPluginClass parent; } MMPluginWavecomClass; GType mm_plugin_wavecom_get_type (void); |