[gnome-commander] Fix for undefined reference to vtable, fixes bgo#726682
- From: Uwe Scholz <uwescholz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-commander] Fix for undefined reference to vtable, fixes bgo#726682
- Date: Wed, 19 Mar 2014 14:16:54 +0000 (UTC)
commit 4a903688d99ea96cc026b3c0939399849ae9e2b4
Author: Mamoru TASAKA <mtasaka fedoraproject org>
Date: Wed Mar 19 14:53:29 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 | 5 ++++-
src/gnome-cmd-plain-path.cc | 4 ++--
3 files changed, 7 insertions(+), 3 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..9232788 100644
--- a/doc/C/releases.xml
+++ b/doc/C/releases.xml
@@ -30,7 +30,10 @@
<para>
<itemizedlist>
<listitem>
- <para>Fixed problem bgo#641842 (use poppler-glib instead of poppler internal
API)</para>
+ <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>
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]