From 5c598d1a787650eba7e8dd476dab407c88ac296e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 30 Apr 2010 08:38:08 +0000 Subject: [PATCH] beginnings of the ukit migration. this time, in many many many small commits along the way to avoid breaking things! :) step 1: migrate *hal* files to *dbus* files SVN revision: 48463 --- src/bin/Makefile.am | 4 ++-- src/bin/e_fm.c | 2 +- src/bin/{e_fm_hal.c => e_fm_dbus.c} | 2 +- src/bin/{e_fm_hal.h => e_fm_dbus.h} | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename src/bin/{e_fm_hal.c => e_fm_dbus.c} (99%) rename src/bin/{e_fm_hal.h => e_fm_dbus.h} (100%) diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am index 1882fa322..93c92706f 100644 --- a/src/bin/Makefile.am +++ b/src/bin/Makefile.am @@ -133,7 +133,7 @@ e_entry_dialog.h \ e_fm.h \ e_fm_op.h \ e_fm_op_registry.h \ -e_fm_hal.h \ +e_fm_dbus.h \ e_widget_scrollframe.h \ e_sha1.h \ e_widget_fsel.h \ @@ -272,7 +272,7 @@ e_confirm_dialog.c \ e_int_border_prop.c \ e_entry_dialog.c \ e_fm.c \ -e_fm_hal.c \ +e_fm_dbus.c \ e_fm_op_registry.c \ e_widget_scrollframe.c \ e_sha1.c \ diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index e6cbfd483..ba7a12a75 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -2,7 +2,7 @@ * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ #include "e.h" -#include "e_fm_hal.h" +#include "e_fm_dbus.h" #include "e_fm_op.h" #define OVERCLIP 128 diff --git a/src/bin/e_fm_hal.c b/src/bin/e_fm_dbus.c similarity index 99% rename from src/bin/e_fm_hal.c rename to src/bin/e_fm_dbus.c index 377e29b23..5a186f134 100644 --- a/src/bin/e_fm_hal.c +++ b/src/bin/e_fm_dbus.c @@ -1,7 +1,7 @@ /* * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 */ -#include "e_fm_hal.h" +#include "e_fm_dbus.h" #define E_FM_SHARED_CODEC #include "e_fm_shared.h" diff --git a/src/bin/e_fm_hal.h b/src/bin/e_fm_dbus.h similarity index 100% rename from src/bin/e_fm_hal.h rename to src/bin/e_fm_dbus.h