File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ void ConnectInfo::RefreshData()
51
51
{
52
52
auto conf = GetConfig ();
53
53
if (!conf) {
54
- blog (LOG_ERROR, " [ConnectInfo::showEvent] Unable to retreive config!" );
54
+ blog (LOG_ERROR, " [ConnectInfo::showEvent] Unable to retrieve config!" );
55
55
return ;
56
56
}
57
57
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ void SettingsDialog::showEvent(QShowEvent *)
79
79
{
80
80
auto conf = GetConfig ();
81
81
if (!conf) {
82
- blog (LOG_ERROR, " [SettingsDialog::showEvent] Unable to retreive config!" );
82
+ blog (LOG_ERROR, " [SettingsDialog::showEvent] Unable to retrieve config!" );
83
83
return ;
84
84
}
85
85
@@ -119,7 +119,7 @@ void SettingsDialog::RefreshData()
119
119
{
120
120
auto conf = GetConfig ();
121
121
if (!conf) {
122
- blog (LOG_ERROR, " [SettingsDialog::RefreshData] Unable to retreive config!" );
122
+ blog (LOG_ERROR, " [SettingsDialog::RefreshData] Unable to retrieve config!" );
123
123
return ;
124
124
}
125
125
@@ -149,7 +149,7 @@ void SettingsDialog::SaveFormData()
149
149
{
150
150
auto conf = GetConfig ();
151
151
if (!conf) {
152
- blog (LOG_ERROR, " [SettingsDialog::SaveFormData] Unable to retreive config!" );
152
+ blog (LOG_ERROR, " [SettingsDialog::SaveFormData] Unable to retrieve config!" );
153
153
return ;
154
154
}
155
155
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ void WebSocketServer::Start()
78
78
79
79
auto conf = GetConfig ();
80
80
if (!conf) {
81
- blog (LOG_ERROR, " [WebSocketServer::Start] Unable to retreive config!" );
81
+ blog (LOG_ERROR, " [WebSocketServer::Start] Unable to retrieve config!" );
82
82
return ;
83
83
}
84
84
@@ -222,7 +222,7 @@ void WebSocketServer::onOpen(websocketpp::connection_hdl hdl)
222
222
223
223
auto conf = GetConfig ();
224
224
if (!conf) {
225
- blog (LOG_ERROR, " [WebSocketServer::onOpen] Unable to retreive config!" );
225
+ blog (LOG_ERROR, " [WebSocketServer::onOpen] Unable to retrieve config!" );
226
226
return ;
227
227
}
228
228
@@ -330,7 +330,7 @@ void WebSocketServer::onClose(websocketpp::connection_hdl hdl)
330
330
// Get config for tray notification
331
331
auto conf = GetConfig ();
332
332
if (!conf) {
333
- blog (LOG_ERROR, " [WebSocketServer::onClose] Unable to retreive config!" );
333
+ blog (LOG_ERROR, " [WebSocketServer::onClose] Unable to retrieve config!" );
334
334
return ;
335
335
}
336
336
You can’t perform that action at this time.
0 commit comments