[gnome-commander] Removes inline keyword to get rid of gcc inline warning
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] Removes inline keyword to get rid of gcc inline warning
- Date: Fri, 11 Aug 2017 19:07:58 +0000 (UTC)
commit 4c1fbb89082278bdc35fabdfa16848a5e7c11fd1
Author: Uwe Scholz <uwescholz src gnome org>
Date: Fri Aug 11 21:04:58 2017 +0200
Removes inline keyword to get rid of gcc inline warning
src/gnome-cmd-file-list.cc | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/gnome-cmd-file-list.cc b/src/gnome-cmd-file-list.cc
index 6af8a3d..b97d64f 100644
--- a/src/gnome-cmd-file-list.cc
+++ b/src/gnome-cmd-file-list.cc
@@ -312,7 +312,7 @@ struct FileFormatData
gchar FileFormatData::empty_string[] = "";
-inline FileFormatData::FileFormatData(GnomeCmdFileList *fl, GnomeCmdFile *f, gboolean tree_size)
+FileFormatData::FileFormatData(GnomeCmdFileList *fl, GnomeCmdFile *f, gboolean tree_size)
{
// If the user wants a character instead of icon for filetype set it now
if (gnome_cmd_data.options.layout == GNOME_CMD_LAYOUT_TEXT)
@@ -338,11 +338,11 @@ inline FileFormatData::FileFormatData(GnomeCmdFileList *fl, GnomeCmdFile *f, gbo
fname = get_utf8 (f->get_name());
if (fl->priv->base_dir != NULL)
- text[GnomeCmdFileList::COLUMN_DIR] = g_strconcat(get_utf8("."), dpath +
(strlen(fl->priv->base_dir)-1), NULL);
+ text[GnomeCmdFileList::COLUMN_DIR] = g_strconcat(get_utf8("."), dpath +
(strlen(fl->priv->base_dir)-1), NULL);
else
- text[GnomeCmdFileList::COLUMN_DIR] = dpath;
+ text[GnomeCmdFileList::COLUMN_DIR] = dpath;
- DEBUG ('l', "FileFormatData text[GnomeCmdFileList::COLUMN_DIR]=[%s]\n",
text[GnomeCmdFileList::COLUMN_DIR]);
+ DEBUG ('l', "FileFormatData text[GnomeCmdFileList::COLUMN_DIR]=[%s]\n",
text[GnomeCmdFileList::COLUMN_DIR]);
if (gnome_cmd_data.options.ext_disp_mode != GNOME_CMD_EXT_DISP_WITH_FNAME)
fext = get_utf8 (f->get_extension());
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]