Skip to content

Commit 9eee1fa

Browse files
committed
Fix typos in log messages
1 parent 5211591 commit 9eee1fa

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
@@ -79,7 +79,7 @@ void SettingsDialog::showEvent(QShowEvent *)
7979
{
8080
auto conf = GetConfig();
8181
if (!conf) {
82-
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retreive config!");
82+
blog(LOG_ERROR, "[SettingsDialog::showEvent] Unable to retrieve config!");
8383
return;
8484
}
8585

@@ -119,7 +119,7 @@ void SettingsDialog::RefreshData()
119119
{
120120
auto conf = GetConfig();
121121
if (!conf) {
122-
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retreive config!");
122+
blog(LOG_ERROR, "[SettingsDialog::RefreshData] Unable to retrieve config!");
123123
return;
124124
}
125125

@@ -149,7 +149,7 @@ void SettingsDialog::SaveFormData()
149149
{
150150
auto conf = GetConfig();
151151
if (!conf) {
152-
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retreive config!");
152+
blog(LOG_ERROR, "[SettingsDialog::SaveFormData] Unable to retrieve config!");
153153
return;
154154
}
155155

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)