aboutsummaryrefslogtreecommitdiff
path: root/graphics/pencil/files/src-external-freebsd-freebsd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/pencil/files/src-external-freebsd-freebsd.cpp')
-rw-r--r--graphics/pencil/files/src-external-freebsd-freebsd.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/graphics/pencil/files/src-external-freebsd-freebsd.cpp b/graphics/pencil/files/src-external-freebsd-freebsd.cpp
new file mode 100644
index 000000000000..64bc068fc5d9
--- /dev/null
+++ b/graphics/pencil/files/src-external-freebsd-freebsd.cpp
@@ -0,0 +1,26 @@
+/*
+
+Pencil - Traditional Animation Software
+Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation;
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+*/
+#include "object.h"
+
+void initialise() {
+ // nothing, for now
+}
+
+void Object::exportMovie(int startFrame, int endFrame, QMatrix view, Layer* currentLayer, QSize exportSize, QString filePath, int fps) {
+ QMessageBox assembling("Export",tr("Not supported yet on this platform..."),QMessageBox::Information,0,0,0);
+ assembling.show();
+ // nothing
+}