From f6310a5b26f5a2d0af9eec0a1eb46eee3c489981 Mon Sep 17 00:00:00 2001 From: compudj Date: Thu, 29 Jan 2004 01:25:53 +0000 Subject: [PATCH] file names mod part 1 git-svn-id: http://ltt.polymtl.ca/svn@432 04897980-b3bd-0310-b5e0-8ef037075253 --- .../gui/ControlFlow/{CFV-private.h => cfv-private.h} | 0 .../poly/lttv/modules/gui/ControlFlow/{CFV.c => cfv.c} | 10 +++++----- .../poly/lttv/modules/gui/ControlFlow/{CFV.h => cfv.h} | 2 +- .../gui/ControlFlow/{Draw_Item.c => draw_item.c} | 0 .../gui/ControlFlow/{Draw_Item.h => draw_item.h} | 0 .../modules/gui/ControlFlow/{Drawing.c => drawing.c} | 0 .../modules/gui/ControlFlow/{Drawing.h => drawing.h} | 0 .../gui/ControlFlow/{Event_Hooks.c => event_hooks.c} | 0 .../gui/ControlFlow/{Event_Hooks.h => event_hooks.h} | 0 .../gui/ControlFlow/{Process_List.c => process-list.c} | 0 .../gui/ControlFlow/{Process_List.h => process-list.h} | 0 11 files changed, 6 insertions(+), 6 deletions(-) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{CFV-private.h => cfv-private.h} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{CFV.c => cfv.c} (97%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{CFV.h => cfv.h} (96%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Draw_Item.c => draw_item.c} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Draw_Item.h => draw_item.h} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Drawing.c => drawing.c} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Drawing.h => drawing.h} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Event_Hooks.c => event_hooks.c} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Event_Hooks.h => event_hooks.h} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Process_List.c => process-list.c} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{Process_List.h => process-list.h} (100%) diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV-private.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv-private.h similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV-private.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv-private.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c similarity index 97% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c index ac371adc..18636ba0 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c @@ -3,11 +3,11 @@ #include #include -#include "CFV.h" -#include "Drawing.h" -#include "Process_List.h" -#include "Event_Hooks.h" -#include "CFV-private.h" +#include "cfv.h" +#include "drawing.h" +#include "process-list.h" +#include "event-hooks.h" +#include "cfv-private.h" #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format) diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h similarity index 96% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h index 208cbf7e..add1331a 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/CFV.h +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h @@ -4,7 +4,7 @@ #include #include #include -#include "Process_List.h" +#include "process-list.h" typedef struct _ControlFlowData ControlFlowData; diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Draw_Item.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.c similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Draw_Item.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.c diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Draw_Item.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.h similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Draw_Item.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Drawing.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Drawing.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Drawing.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Drawing.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Event_Hooks.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.c similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Event_Hooks.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.c diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Event_Hooks.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.h similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Event_Hooks.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Process_List.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.c similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Process_List.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.c diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Process_List.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.h similarity index 100% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/Process_List.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.h -- 2.34.1