Skip to content
Snippets Groups Projects
Commit 45a248b6 authored by Peter Albrecht's avatar Peter Albrecht
Browse files

Revert "Remove redundant const"

This reverts commit 51d34546.
parent 51d34546
No related branches found
No related tags found
1 merge request!426Skill Gui QOL
Pipeline #17682 passed
...@@ -13,11 +13,11 @@ namespace armarx::skills::gui ...@@ -13,11 +13,11 @@ namespace armarx::skills::gui
{ {
Q_OBJECT Q_OBJECT
public: public:
static constexpr char* SET_ARGS_BUTTON_TEXT = "Set Args from Clipboard"; static const constexpr char* SET_ARGS_BUTTON_TEXT = "Set Args from Clipboard";
static constexpr char* COPY_ARGS_BUTTON_TEXT = " Copy Args to Clipboard"; static const constexpr char* COPY_ARGS_BUTTON_TEXT = " Copy Args to Clipboard";
static constexpr char* RESET_ARGS_BUTTON_TEXT = " Reset Args to Profile"; static const constexpr char* RESET_ARGS_BUTTON_TEXT = " Reset Args to Profile";
static constexpr char* DEFAULT_PROFILE_TEXT = "<No Profile selected. Using root>"; static const constexpr char* DEFAULT_PROFILE_TEXT = "<No Profile selected. Using root>";
static constexpr char* PROFILE_NOT_IMPLEMENTED = static const constexpr char* PROFILE_NOT_IMPLEMENTED =
"Profiles other than the root profile are currently not supported."; "Profiles other than the root profile are currently not supported.";
// contents are public, as this class is just a convenience wrapper // contents are public, as this class is just a convenience wrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment