[vlc-devel] commit: Missing const ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Aug 29 15:26:24 CEST 2009
vlc | branch: 1.0-bugfix | Rémi Denis-Courmont <remi at remlab.net> | Thu Aug 13 23:09:51 2009 +0300| [5bdf0ceac09fd366cf0098043ded905226d3c178] | committer: Rémi Denis-Courmont
Missing const
(cherry picked from commit cbac33a9878c970feea6475f7170c3ce24ad2971)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5bdf0ceac09fd366cf0098043ded905226d3c178
---
modules/gui/qt4/components/controller.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/controller.hpp b/modules/gui/qt4/components/controller.hpp
index 3113666..9e0aa9a 100644
--- a/modules/gui/qt4/components/controller.hpp
+++ b/modules/gui/qt4/components/controller.hpp
@@ -98,12 +98,12 @@ typedef enum buttonType_e
} buttonType_e;
-static const char* nameL[BUTTON_MAX] = { N_("Play"), N_("Stop"), N_("Open"),
+static const char* const nameL[BUTTON_MAX] = { N_("Play"), N_("Stop"), N_("Open"),
N_("Previous"), N_("Next"), N_("Slower"), N_("Faster"), N_("Fullscreen"),
N_("De-Fullscreen"), N_("Extended panel"), N_("Playlist"), N_("Snapshot"),
N_("Record"), N_("A->B Loop"), N_("Frame By Frame"), N_("Trickplay Reverse"),
N_("Step backward" ), N_("Step forward"), N_("Quit") };
-static const char* tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP,
+static const char* const tooltipL[BUTTON_MAX] = { I_PLAY_TOOLTIP,
N_("Stop playback"), N_("Open a medium"),
N_("Previous media in the playlist"),
N_("Next media in the playlist"), N_("Slower"), N_("Faster"),
More information about the vlc-devel
mailing list