Move definition to .cpp

This commit is contained in:
kraftwerk28 2021-08-25 23:26:04 +03:00
parent 02560a6537
commit 59040c53e4
2 changed files with 8 additions and 6 deletions

View File

@ -32,12 +32,7 @@ class Language : public ALabel, public sigc::trackable {
std::string short_name;
std::string variant;
std::string short_description;
std::string country_flag() const {
static std::string result = "\xf0\x9f\x87\xff\xf0\x9f\x87\xff";
result[3] = short_name[0] - 0xbb;
result[7] = short_name[1] - 0xbb;
return result;
}
std::string country_flag() const;
};
class XKBContext {

View File

@ -213,4 +213,11 @@ Language::XKBContext::~XKBContext() {
rxkb_context_unref(context_);
delete layout_;
}
std::string Language::Layout::country_flag() const {
static std::string result = "\xf0\x9f\x87\xff\xf0\x9f\x87\xff";
result[3] = short_name[0] - 0xbb;
result[7] = short_name[1] - 0xbb;
return result;
}
} // namespace waybar::modules::sway