Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-02-03 02:06:22 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-02-03 02:06:22 +0300
commit667cd5a7cd9a731ea52a49181807f02457b5405e (patch)
treec9b5e8d8d1cc43e4bd9428c528a5e456d94a5c3f /plugins/rdp
parent9206a0a74d51ea87bce54f07781148bc2182a7d3 (diff)
refactoring: new name space for remmina_connection_window
Diffstat (limited to 'plugins/rdp')
-rw-r--r--plugins/rdp/rdp_channels.c2
-rw-r--r--plugins/rdp/rdp_plugin.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/rdp/rdp_channels.c b/plugins/rdp/rdp_channels.c
index c211c5b36..7037c0134 100644
--- a/plugins/rdp/rdp_channels.c
+++ b/plugins/rdp/rdp_channels.c
@@ -71,7 +71,7 @@ void remmina_rdp_OnChannelConnectedEventHandler(rdpContext* context, ChannelConn
}else if (g_strcmp0(e->name, DISP_DVC_CHANNEL_NAME) == 0) {
// "disp" channel connected, save its context pointer
rfi->dispcontext = (DispClientContext*)e->pInterface;
- // Notify remmina_connection_window to unlock dynres capability
+ // Notify rcw to unlock dynres capability
remmina_plugin_service->protocol_plugin_emit_signal(rfi->protocol_widget, "unlock-dynres");
// Send monitor layout message here to ask for resize of remote desktop now
if (rfi->scale == REMMINA_PROTOCOL_WIDGET_SCALE_MODE_DYNRES) {
diff --git a/plugins/rdp/rdp_plugin.c b/plugins/rdp/rdp_plugin.c
index b3295c7e1..96482f2ea 100644
--- a/plugins/rdp/rdp_plugin.c
+++ b/plugins/rdp/rdp_plugin.c
@@ -543,7 +543,7 @@ static BOOL remmina_rdp_authenticate(freerdp* instance, char** username, char**
if (save) {
// User has requested to save credentials. We put all the new cretentials
// into remminafile->settings. They will be saved later, on successful connection, by
- // remmina_connection_window.c
+ // rcw.c
remmina_plugin_service->file_set_string( remminafile, "username", s_username );
remmina_plugin_service->file_set_string( remminafile, "password", s_password );
@@ -598,7 +598,7 @@ static BOOL remmina_rdp_gw_authenticate(freerdp* instance, char** username, char
if (save) {
// User has requested to save credentials. We put all the new cretentials
// into remminafile->settings. They will be saved later, on successful connection, by
- // remmina_connection_window.c
+ // rcw.c
remmina_plugin_service->file_set_string( remminafile, "gateway_username", s_username );
remmina_plugin_service->file_set_string( remminafile, "gateway_password", s_password );