two small changes to allow debugsource packages for rpm based distros build with more strict options, no Issue

This commit is contained in:
Ingo 2014-12-30 00:21:54 +01:00
parent 87b107a48c
commit 07e5213b3d
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
class DFProvider {
public:
virtual rtengine::RawImage* getDF() = 0;
virtual Glib::ustring GetCurrentImageFilePath() {};
virtual Glib::ustring GetCurrentImageFilePath() = 0;
// add other info here
};

View File

@ -30,7 +30,7 @@ class FFProvider {
public:
virtual ~FFProvider() {}
virtual rtengine::RawImage* getFF() = 0;
virtual Glib::ustring GetCurrentImageFilePath() {};
virtual Glib::ustring GetCurrentImageFilePath() = 0;
// add other info here
};