Skip to content

Commit 489da1e

Browse files
committed
Fix typos in log messages
1 parent 709d597 commit 489da1e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/forms/ConnectInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void ConnectInfo::RefreshData()
5151
{
5252
auto conf = GetConfig();
5353
if (!conf) {
54-
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retreive config!");
54+
blog(LOG_ERROR, "[ConnectInfo::showEvent] Unable to retrieve config!");
5555
return;
5656
}
5757

src/forms/SettingsDialog.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void SettingsDialog::showEvent(QShowEvent *)
7474
{
7575
auto conf = GetConfig();
7676
if (!conf) {
77-
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retreive config!");
77+
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retrieve config!");
7878
return;
7979
}
8080

@@ -114,7 +114,7 @@ void SettingsDialog::RefreshData()
114114
{
115115
auto conf = GetConfig();
116116
if (!conf) {
117-
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retreive config!");
117+
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retrieve config!");
118118
return;
119119
}
120120

@@ -144,7 +144,7 @@ void SettingsDialog::SaveFormData()
144144
{
145145
auto conf = GetConfig();
146146
if (!conf) {
147-
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retreive config!");
147+
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retrieve config!");
148148
return;
149149
}
150150

src/websocketserver/WebSocketServer.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void WebSocketServer::Start()
7878

7979
auto conf = GetConfig();
8080
if (!conf) {
81-
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retreive config!");
81+
blog(LOG_ERROR, "[WebSocketServer::Start] Unable to retrieve config!");
8282
return;
8383
}
8484

@@ -222,7 +222,7 @@ void WebSocketServer::onOpen(websocketpp::connection_hdl hdl)
222222

223223
auto conf = GetConfig();
224224
if (!conf) {
225-
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retreive config!");
225+
blog(LOG_ERROR, "[WebSocketServer::onOpen] Unable to retrieve config!");
226226
return;
227227
}
228228

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

0 commit comments

Comments
 (0)