hdspmixer: Fix compiler warnings.

All compiler warnings were caused by a conversion from "foo" to a
char pointer. Given that the string itself really is constant, simply
add the keyword to make g++ happy.

Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Adrian Knoth 2011-02-28 14:56:07 +01:00 committed by Takashi Iwai
parent 646eacb626
commit c3349a84ea
55 changed files with 130 additions and 130 deletions

View file

@ -91,7 +91,7 @@ static void rmsplus3_cb(Fl_Widget *widget, void *arg)
}
HDSPMixerSetup::HDSPMixerSetup(int w, int h, char *label, HDSPMixerWindow *win):Fl_Double_Window(w, h, label)
HDSPMixerSetup::HDSPMixerSetup(int w, int h, char const *label, HDSPMixerWindow *win):Fl_Double_Window(w, h, label)
{
basew = win;
plm = new Fl_Group(10, 25, 380, 60, "Peak Level Meters");