[gnome-commander/gcmd-1-4] Fix for undefined reference to vtable, fixes bgo#726682



commit e8c177035aeae0158ca35789129c36a869feb939
Author: Mamoru TASAKA <mtasaka fedoraproject org>
Date:   Wed Mar 19 15:16:07 2014 +0100

    Fix for undefined reference to vtable, fixes bgo#726682
    
    Signed-off-by: Uwe Scholz <uwescholz src gnome org>

 NEWS                        |    1 +
 doc/C/releases.xml          |    3 +++
 src/gnome-cmd-plain-path.cc |    4 ++--
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/NEWS b/NEWS
index b6a0d23..6f1cf2e 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,7 @@ gnome-commander 1.4.1
 
 Bug fixes:
  * Fixed problem bgo#641842 (use poppler-glib instead of poppler internal API)
+ * Fixed problem bgo#726682 (Fix for undefined reference to vtable)
  * Support for utf8 encoded creation and modification dates in document metadata
  * Moved Search, Quick Search and Enable Filter from Edit to File menu
 New features:
diff --git a/doc/C/releases.xml b/doc/C/releases.xml
index ae0b104..d1a9542 100644
--- a/doc/C/releases.xml
+++ b/doc/C/releases.xml
@@ -33,6 +33,9 @@
                             <para>Fixed problem bgo#641842 (use poppler-glib instead of poppler internal 
API)</para>
                         </listitem>
                         <listitem>
+                            <para>Fixed problem bgo#726682 (Patch to fix undefined reference to 
vtable)</para>
+                        </listitem>
+                        <listitem>
                            <para>Support for utf8 encoded creation and modification dates in document 
metadata</para>
                        </listitem>
                         <listitem>
diff --git a/src/gnome-cmd-plain-path.cc b/src/gnome-cmd-plain-path.cc
index 9fb1619..1a3ceb5 100644
--- a/src/gnome-cmd-plain-path.cc
+++ b/src/gnome-cmd-plain-path.cc
@@ -27,7 +27,7 @@
 using namespace std;
 
 
-inline GnomeCmdPath *GnomeCmdPlainPath::get_parent()
+GnomeCmdPath *GnomeCmdPlainPath::get_parent()
 {
     GnomeVFSURI *t = gnome_vfs_uri_new (G_DIR_SEPARATOR_S);
     GnomeVFSURI *u1 = gnome_vfs_uri_append_path (t, path);
@@ -48,7 +48,7 @@ inline GnomeCmdPath *GnomeCmdPlainPath::get_parent()
 }
 
 
-inline GnomeCmdPath *GnomeCmdPlainPath::get_child(const gchar *child)
+GnomeCmdPath *GnomeCmdPlainPath::get_child(const gchar *child)
 {
     GnomeVFSURI *t = gnome_vfs_uri_new (G_DIR_SEPARATOR_S);
     GnomeVFSURI *u1 = gnome_vfs_uri_append_path (t, path);


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