Skip to content

Commit

Permalink
Fix typos in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
umlaeute committed Feb 5, 2025
1 parent 5211591 commit 9eee1fa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/forms/ConnectInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void ConnectInfo::RefreshData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retreive config!");
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retrieve config!");
return;
}

Expand Down
6 changes: 3 additions & 3 deletions src/forms/SettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void SettingsDialog::showEvent(QShowEvent *)
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retrieve config!");
return;
}

Expand Down Expand Up @@ -119,7 +119,7 @@ void SettingsDialog::RefreshData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retrieve config!");
return;
}

Expand Down Expand Up @@ -149,7 +149,7 @@ void SettingsDialog::SaveFormData()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retreive config!");
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retrieve config!");
return;
}

Expand Down
6 changes: 3 additions & 3 deletions src/websocketserver/WebSocketServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void WebSocketServer::Start()

auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retrieve config!");
return;
}

Expand Down Expand Up @@ -222,7 +222,7 @@ void WebSocketServer::onOpen(websocketpp::connection_hdl hdl)

auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retrieve config!");
return;
}

Expand Down Expand Up @@ -330,7 +330,7 @@ void WebSocketServer::onClose(websocketpp::connection_hdl hdl)
// Get config for tray notification
auto conf = GetConfig();
if (!conf) {
blog(LOG_ERROR, "[WebSocketServer::onClose] Unable to retreive config!");
blog(LOG_ERROR, "[WebSocketServer::onClose] Unable to retrieve config!");
return;
}

Expand Down

0 comments on commit 9eee1fa

Please sign in to comment.