]> Pileus Git - aweather/commitdiff
Rename aweather-colormap.[ch] to radar-info.[ch]
authorAndy Spencer <andy753421@gmail.com>
Sun, 13 Feb 2011 10:44:38 +0000 (10:44 +0000)
committerAndy Spencer <andy753421@gmail.com>
Sun, 13 Feb 2011 10:44:38 +0000 (10:44 +0000)
The colormap is specific to the radar data. plugin-info.[ch] can be
common name for plugin-specific data.

src/plugins/Makefile.am
src/plugins/level2.h
src/plugins/radar-info.c [moved from src/aweather-colormap.c with 99% similarity]
src/plugins/radar-info.h [moved from src/aweather-colormap.h with 100% similarity]
src/plugins/radar.h

index ce9f557551f3d6ce891017943f9c707c5aafb0ac..29ae442247d481acc1f5c5b6323606a0358a4232 100644 (file)
@@ -10,10 +10,9 @@ plugins_LTLIBRARIES =
 if HAVE_RSL
 plugins_LTLIBRARIES += radar.la
 radar_la_SOURCES = \
-       radar.c  radar.h \
-       level2.c level2.h \
-       ../aweather-colormap.c \
-       ../aweather-colormap.h \
+       radar.c      radar.h \
+       level2.c     level2.h \
+       radar-info.c radar-info.h \
        ../aweather-location.c \
        ../aweather-location.h
 radar_la_LIBADD  = $(RSL_LIBS) $(GRITS_LIBS) \
index 3f522cb8c6fa5adac98865055f15e08007983de8..a81042892412fdfd0a977490ac9bd635a6d92bc1 100644 (file)
@@ -19,7 +19,7 @@
 #define __AWEATHER_LEVEL2_H__
 
 #include <grits.h>
-#include "aweather-colormap.h"
+#include "radar-info.h"
 
 /* Level2 */
 #define AWEATHER_TYPE_LEVEL2            (aweather_level2_get_type())
similarity index 99%
rename from src/aweather-colormap.c
rename to src/plugins/radar-info.c
index cd133f6b7ced67b47d92a2998f8d999bc3a32c27..ecbc47eac603f8343fc61b58f7a74646ad75c3b0 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 #include <rsl.h>
-#include "aweather-colormap.h"
+#include "radar-info.h"
 
          //{0xcc,0xff,0xff,0xff},{0xcc,0xff,0xff,0xff}, {0xcc,0xff,0xff,0xff},
          //{0xcc,0x99,0xcc,0xff},{0xcc,0x99,0xcc,0xff}, {0xcc,0x99,0xcc,0xff},
index 8227aa15d6cfeeaa61f5086b3218dd18b37697f4..71136aefb81faf238f72004430e5ee94f592141f 100644 (file)
@@ -22,6 +22,7 @@
 #include <rsl.h>
 
 #include <grits.h>
+#include "radar-info.h"
 #include "level2.h"
 
 #define GRITS_TYPE_PLUGIN_RADAR            (grits_plugin_radar_get_type ())