[gnome-commander] noop: Method renamed



commit e92b6455ce66967b3609d7beca3ba5546171f63d
Author: Uwe Scholz <u scholz83 gmx de>
Date:   Sun Dec 5 21:39:44 2021 +0100

    noop: Method renamed

 src/dialogs/gnome-cmd-file-props-dialog.cc | 2 +-
 src/gnome-cmd-file-popmenu.cc              | 2 +-
 src/gnome-cmd-file.cc                      | 2 +-
 src/gnome-cmd-file.h                       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/dialogs/gnome-cmd-file-props-dialog.cc b/src/dialogs/gnome-cmd-file-props-dialog.cc
index 7cf7985b..07a8180d 100644
--- a/src/dialogs/gnome-cmd-file-props-dialog.cc
+++ b/src/dialogs/gnome-cmd-file-props-dialog.cc
@@ -413,7 +413,7 @@ static GtkWidget *create_properties_tab (GnomeCmdFilePropsDialogPrivate *data)
         label = create_bold_label (dialog, _("Opens with:"));
         table_add (table, label, 0, y, GTK_FILL);
 
-        auto default_application_string = data->f->get_default_application_name_string();
+        auto default_application_string = data->f->GetDefaultApplicationNameString();
 
         if (default_application_string)
         {
diff --git a/src/gnome-cmd-file-popmenu.cc b/src/gnome-cmd-file-popmenu.cc
index 3dc6b9df..119a0c47 100644
--- a/src/gnome-cmd-file-popmenu.cc
+++ b/src/gnome-cmd-file-popmenu.cc
@@ -832,7 +832,7 @@ guint add_open_with_entries(GtkUIManager *ui_manager, GnomeCmdFileList *gnomeCmd
     gchar *openWithDefaultAppLabel = nullptr;
 
     // Only try to find a default application for the first file in the list of selected files
-    openWithDefaultAppName  = gnomeCmdFile->get_default_application_name_string();
+    openWithDefaultAppName  = gnomeCmdFile->GetDefaultApplicationNameString();
     auto gAppInfo = gnomeCmdFile->GetAppInfoForContentType();
     openWithDefaultAppLabel = gnomeCmdFile->get_default_application_action_label(gAppInfo);
 
diff --git a/src/gnome-cmd-file.cc b/src/gnome-cmd-file.cc
index f94cba8d..6a3e7ceb 100644
--- a/src/gnome-cmd-file.cc
+++ b/src/gnome-cmd-file.cc
@@ -585,7 +585,7 @@ guint64 GnomeCmdFile::GetGfileAttributeUInt64(const char *attribute)
 }
 
 
-gchar *GnomeCmdFile::get_default_application_name_string()
+gchar *GnomeCmdFile::GetDefaultApplicationNameString()
 {
     auto contentType = GetGfileAttributeString (G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE);
 
diff --git a/src/gnome-cmd-file.h b/src/gnome-cmd-file.h
index 1d945719..016acff6 100644
--- a/src/gnome-cmd-file.h
+++ b/src/gnome-cmd-file.h
@@ -108,7 +108,7 @@ struct GnomeCmdFile
     guint32 GetGfileAttributeUInt32(const char *attribute);
     guint64 GetGfileAttributeUInt64(const char *attribute);
     gchar *GetGfileAttributeString(const char *attribute);
-    gchar *get_default_application_name_string();
+    gchar *GetDefaultApplicationNameString();
     gchar *get_default_application_action_label(GAppInfo *gAppInfo);
     gchar *get_default_application_name(GAppInfo *gAppInfo);
     GAppInfo *GetAppInfoForContentType();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]