diff options
author | markus <markus@FreeBSD.org> | 2007-03-28 04:40:37 +0800 |
---|---|---|
committer | markus <markus@FreeBSD.org> | 2007-03-28 04:40:37 +0800 |
commit | 946073da9a83b65474b9d26e4343a115d04dbb18 (patch) | |
tree | 4d5a08c2d494b96e9eff350946246fa04083518d /databases/kbibtex/files | |
parent | d25b759a7121315e47fd64443d0dc56156903a24 (diff) | |
download | freebsd-ports-gnome-946073da9a83b65474b9d26e4343a115d04dbb18.tar.gz freebsd-ports-gnome-946073da9a83b65474b9d26e4343a115d04dbb18.tar.zst freebsd-ports-gnome-946073da9a83b65474b9d26e4343a115d04dbb18.zip |
Fix build with gcc 4.1
Submitted by: pointyhat via kris
Diffstat (limited to 'databases/kbibtex/files')
-rw-r--r-- | databases/kbibtex/files/patch-src-fileimporter.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/kbibtex/files/patch-src-fileimporter.h b/databases/kbibtex/files/patch-src-fileimporter.h new file mode 100644 index 000000000000..4823f7196052 --- /dev/null +++ b/databases/kbibtex/files/patch-src-fileimporter.h @@ -0,0 +1,11 @@ +--- src/fileimporter.h.orig Mon Mar 26 20:15:05 2007 ++++ src/fileimporter.h Mon Mar 26 20:15:33 2007 +@@ -39,7 +39,7 @@ + ~FileImporter(); + + File* load ( const QString& text ); +- virtual File* load( QIODevice *iodevice ) = NULL; ++ virtual File* load( QIODevice *iodevice ) = 0; + + static bool guessCanDecode( const QString & ) { return FALSE; }; + |