mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
uppercase const name, make argument linked
This commit is contained in:
parent
a711b683cc
commit
fe8845ae1a
2 changed files with 3 additions and 3 deletions
|
|
@ -32,9 +32,9 @@ Title::Title()
|
|||
Title::~Title() = default;
|
||||
|
||||
void Title::set(
|
||||
const Glib::ustring value
|
||||
const Glib::ustring & TEXT
|
||||
) {
|
||||
set_text(
|
||||
value.empty() ? DEFAULT_TEXT : value + " - " + DEFAULT_TEXT
|
||||
TEXT.empty() ? DEFAULT_TEXT : TEXT + " - " + DEFAULT_TEXT
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue