Merge pull request #2025 from ElyesH/master

This commit is contained in:
Alex 2023-02-25 10:49:59 +01:00 committed by GitHub
commit 09142fa322
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ Gamemode::Gamemode(const std::string& id, const Json::Value& config)
}
box_.set_spacing(iconSpacing);
// Wether to use icon or not
// Whether to use icon or not
if (config_["use-icon"].isBool()) {
useIcon = config_["use-icon"].asBool();
}

View File

@ -98,7 +98,7 @@ waybar::modules::Network::Network(const std::string &id, const Json::Value &conf
// Start with some "text" in the module's label_. update() will then
// update it. Since the text should be different, update() will be able
// to show or hide the event_box_. This is to work around the case where
// the module start with no text, but the the event_box_ is shown.
// the module start with no text, but the event_box_ is shown.
label_.set_markup("<s></s>");
auto bandwidth = readBandwidthUsage();

View File

@ -156,7 +156,7 @@ void Workspaces::onCmd(const struct Ipc::ipc_response &res) {
if (l == r || config_["alphabetical_sort"].asBool()) {
// In case both integers are the same, lexicographical
// sort. The code above already ensure that this will only
// happend in case of explicitly numbered workspaces.
// happened in case of explicitly numbered workspaces.
//
// Additionally, if the config specifies to sort workspaces
// alphabetically do this here.

View File

@ -6,7 +6,7 @@
namespace waybar::util {
// replaces ``<>&"'`` with their encoded counterparts
std::string sanitize_string(std::string str) {
// note: it's important that '&' is replaced first; therefor we *can't* use std::map
// note: it's important that '&' is replaced first; therefore we *can't* use std::map
const std::pair<char, std::string> replacement_table[] = {
{'&', "&amp;"}, {'<', "&lt;"}, {'>', "&gt;"}, {'"', "&quot;"}, {'\'', "&apos;"}};
size_t startpoint;