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 @@ -74,7 +74,7 @@ void SettingsDialog::showEvent(QShowEvent *)
74
74
{
75
75
auto conf = GetConfig ();
76
76
if (!conf) {
77
- blog (LOG_ERROR, " [SettingsDialog::showEvent] Unable to retreive config!" );
77
+ blog (LOG_ERROR, " [SettingsDialog::showEvent] Unable to retrieve config!" );
78
78
return ;
79
79
}
80
80
@@ -114,7 +114,7 @@ void SettingsDialog::RefreshData()
114
114
{
115
115
auto conf = GetConfig ();
116
116
if (!conf) {
117
- blog (LOG_ERROR, " [SettingsDialog::RefreshData] Unable to retreive config!" );
117
+ blog (LOG_ERROR, " [SettingsDialog::RefreshData] Unable to retrieve config!" );
118
118
return ;
119
119
}
120
120
@@ -144,7 +144,7 @@ void SettingsDialog::SaveFormData()
144
144
{
145
145
auto conf = GetConfig ();
146
146
if (!conf) {
147
- blog (LOG_ERROR, " [SettingsDialog::SaveFormData] Unable to retreive config!" );
147
+ blog (LOG_ERROR, " [SettingsDialog::SaveFormData] Unable to retrieve config!" );
148
148
return ;
149
149
}
150
150
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