mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +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
|
||||
);
|
||||
}
|
||||
|
|
@ -21,7 +21,7 @@ namespace app::browser::header::main
|
|||
~Title();
|
||||
|
||||
void set(
|
||||
const Glib::ustring value
|
||||
const Glib::ustring & TEXT
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue