1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

cmake: Fix missing NLS messages

For example, opening the CMake property page, there was a missing
message for the cmake-ui button.

Change-Id: I126fe1cb6e290edc289a2dade44500dd35ed1207
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
Marc-Andre Laperle 2017-01-12 22:21:12 -05:00 committed by Marc-André Laperle
parent 2fe3f7ec9f
commit 6cad124cf0
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ package org.eclipse.cdt.cmake.ui.internal;
import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.cdt.cmake.ui.properties.messages"; //$NON-NLS-1$
public static String CMakeBuildTab_BuildCommand;
public static String CMakeBuildTab_CleanCommand;
public static String CMakeBuildTab_Cmake;
@ -17,7 +17,7 @@ public class Messages extends NLS {
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
NLS.initializeMessages(Messages.class.getName(), Messages.class);
}
private Messages() {