From d66666fecab8c35e69a2ee4eca1fb240057f1346 Mon Sep 17 00:00:00 2001 From: compudj Date: Thu, 29 Jan 2004 01:31:11 +0000 Subject: [PATCH] file names mod part 2 git-svn-id: http://ltt.polymtl.ca/svn@433 04897980-b3bd-0310-b5e0-8ef037075253 --- .../poly/lttv/modules/gui/ControlFlow/Makefile.am | 8 ++++---- ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c | 4 ++-- ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h | 2 +- ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c | 8 ++++---- ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h | 4 ++-- .../modules/gui/ControlFlow/{draw_item.c => drawitem.c} | 4 ++-- .../modules/gui/ControlFlow/{draw_item.h => drawitem.h} | 0 .../gui/ControlFlow/{event_hooks.c => eventhooks.c} | 0 .../gui/ControlFlow/{event_hooks.h => eventhooks.h} | 9 +++++---- ltt/branches/poly/lttv/modules/gui/ControlFlow/module.c | 6 +++--- .../gui/ControlFlow/{process-list.c => processlist.c} | 5 +++-- .../gui/ControlFlow/{process-list.h => processlist.h} | 3 ++- 12 files changed, 28 insertions(+), 25 deletions(-) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{draw_item.c => drawitem.c} (99%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{draw_item.h => drawitem.h} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{event_hooks.c => eventhooks.c} (100%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{event_hooks.h => eventhooks.h} (94%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{process-list.c => processlist.c} (99%) rename ltt/branches/poly/lttv/modules/gui/ControlFlow/{process-list.h => processlist.h} (98%) diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Makefile.am b/ltt/branches/poly/lttv/modules/gui/ControlFlow/Makefile.am index 7ce36161..8e62355c 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/Makefile.am +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/Makefile.am @@ -13,8 +13,8 @@ libdir = ${lttvplugindir} lib_LTLIBRARIES = libguiControlFlow.la libguiControlFlow_la_LDFLAGS = -module -libguiControlFlow_la_SOURCES = module.c Event_Hooks.c CFV.c Process_List.c\ - Drawing.c Draw_Item.c +libguiControlFlow_la_SOURCES = module.c eventhooks.c cfv.c processlist.c\ + drawing.c drawitem.c -noinst_HEADERS = Event_Hooks.h CFV.h Process_List.h\ - Drawing.h Draw_Item.h +noinst_HEADERS = eventhooks.h cfv.h cfv-private.h processlist.h\ + drawing.h drawitem.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c index 18636ba0..94a4c08b 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.c @@ -5,8 +5,8 @@ #include "cfv.h" #include "drawing.h" -#include "process-list.h" -#include "event-hooks.h" +#include "processlist.h" +#include "eventhooks.h" #include "cfv-private.h" diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/cfv.h index add1331a..6113453e 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 "processlist.h" typedef struct _ControlFlowData ControlFlowData; diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c index 85d2efcb..8ed214a3 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.c @@ -6,10 +6,10 @@ #include #include -#include "Drawing.h" -#include "CFV.h" -#include "CFV-private.h" -#include "Event_Hooks.h" +#include "drawing.h" +#include "cfv.h" +#include "cfv-private.h" +#include "eventhooks.h" #define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format) #define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format) diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h index d4b6afd6..6ffc61a5 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawing.h @@ -5,8 +5,8 @@ #include #include #include -#include "CFV.h" -#include "Draw_Item.h" +#include "cfv.h" +#include "drawitem.h" #define SAFETY 50 // safety pixels at right and bottom of pixmap buffer diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawitem.c similarity index 99% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/drawitem.c index 7c929c82..ef840f5a 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawitem.c @@ -1,5 +1,5 @@ /****************************************************************************** - * Draw_Item.c + * drawitem.c * * This file contains methods responsible for drawing a generic type of data * in a drawable. Doing this generically will permit user defined drawing @@ -85,7 +85,7 @@ #include #include -#include "Draw_Item.h" +#include "drawitem.h" #define MAX_PATH_LEN 256 diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/draw_item.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/drawitem.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/drawitem.h diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/eventhooks.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/eventhooks.c diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/eventhooks.h similarity index 94% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/eventhooks.h index 66170d3c..d9f35605 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/event_hooks.h +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/eventhooks.h @@ -1,4 +1,4 @@ -/* Event_hooks.c defines the hooks that are given to processTrace as parameter. +/* eventhooks.c defines the hooks that are given to processTrace as parameter. * These hooks call the drawing API to draw the information on the screen, * using information from Context, but mostly state (running, waiting...). */ @@ -10,9 +10,10 @@ #include #include #include -#include "Process_List.h" -#include "Drawing.h" -#include "CFV.h" + +#include "processlist.h" +#include "drawing.h" +#include "cfv.h" /* Structure used to store and use information relative to one events refresh diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/module.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/module.c index 216688fb..aec5aab0 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/module.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/module.c @@ -25,10 +25,10 @@ #include #include -#include "CFV.h" -#include "Event_Hooks.h" +#include "cfv.h" +#include "eventhooks.h" - #include "../icons/hGuiControlFlowInsert.xpm" +#include "../icons/hGuiControlFlowInsert.xpm" static LttvModule *Main_Win_Module; diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.c b/ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.c similarity index 99% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.c rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.c index c695fb15..a1d03ac3 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.c +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.c @@ -1,8 +1,9 @@ #include #include -#include "Process_List.h" -#include "Draw_Item.h" + +#include "processlist.h" +#include "drawitem.h" /***************************************************************************** * Methods to synchronize process list * diff --git a/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.h b/ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.h similarity index 98% rename from ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.h rename to ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.h index d3272160..2ed7b343 100644 --- a/ltt/branches/poly/lttv/modules/gui/ControlFlow/process-list.h +++ b/ltt/branches/poly/lttv/modules/gui/ControlFlow/processlist.h @@ -4,7 +4,8 @@ #include #include #include -#include "Draw_Item.h" + +#include "drawitem.h" /* The process list * -- 2.34.1