]> git.sesse.net Git - vlc/commitdiff
* modules/visualization/visual/visual.c: SECT_TEXT is a reserved Mach-O
authorSam Hocevar <sam@videolan.org>
Thu, 26 Jan 2006 20:27:37 +0000 (20:27 +0000)
committerSam Hocevar <sam@videolan.org>
Thu, 26 Jan 2006 20:27:37 +0000 (20:27 +0000)
    name, renamed it into SSECT_TEXT (for "spectral section").

modules/visualization/visual/visual.c

index 849af95bfde35ee765ff0f35c12aae86062d2206..2d05bb0e6cb1534efe01ddd2066f064240a40d87 100644 (file)
@@ -82,8 +82,8 @@
 #define RADIUS_LONGTEXT N_( \
         "Defines radius size in pixels, of base of bands(beginning)." )
 
-#define SECT_TEXT N_( "Spectral sections" )
-#define SECT_LONGTEXT N_( \
+#define SSECT_TEXT N_( "Spectral sections" )
+#define SSECT_LONGTEXT N_( \
         "Determines how many sections of spectrum will exist." )
 
 #define PEAK_HEIGHT_TEXT N_( "Peak height" )
@@ -134,7 +134,7 @@ vlc_module_begin();
     add_integer("spect-radius", 42, NULL,
              RADIUS_TEXT, RADIUS_LONGTEXT, VLC_TRUE );
     add_integer("spect-sections", 3, NULL,
-             SECT_TEXT, SECT_LONGTEXT, VLC_TRUE );
+             SSECT_TEXT, SSECT_LONGTEXT, VLC_TRUE );
     add_integer("spect-color", 80, NULL,
              COLOR1_TEXT, COLOR1_LONGTEXT, VLC_TRUE );
     add_bool("spect-show-bands", VLC_TRUE, NULL,