Commit 5e6a22dc authored by Claudio Valerio's avatar Claudio Valerio

fixed some merge issues

parent 1ef3c90f
...@@ -55,6 +55,7 @@ include(src/desktop/desktop.pri) ...@@ -55,6 +55,7 @@ include(src/desktop/desktop.pri)
include(src/web/web.pri) include(src/web/web.pri)
include(src/transition/transition.pri) include(src/transition/transition.pri)
include(src/interfaces/interfaces.pri) include(src/interfaces/interfaces.pri)
include(src/customWidgets/customWidgets.pri)
DEPENDPATH += src/pdf-merger DEPENDPATH += src/pdf-merger
INCLUDEPATH += src/pdf-merger INCLUDEPATH += src/pdf-merger
......
...@@ -1374,7 +1374,7 @@ p, li { white-space: pre-wrap; } ...@@ -1374,7 +1374,7 @@ p, li { white-space: pre-wrap; }
<attribute name="title"> <attribute name="title">
<string>Credits</string> <string>Credits</string>
</attribute> </attribute>
<layout class="QVBoxLayout" name="verticalLayout_3"> <layout class="QVBoxLayout" name="verticalLayout_31">
<item> <item>
<widget class="QTextBrowser" name="credentialTextBrowser"> <widget class="QTextBrowser" name="credentialTextBrowser">
<property name="html"> <property name="html">
......
/*
* 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, either version 3 of the License, or
* (at your option) any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef UBExportCFF_H_
#define UBExportCFF_H_
#include <QtCore>
#include "UBExportAdaptor.h"
#include "frameworks/UBFileSystemUtils.h"
class UBDocumentProxy;
class UBExportCFF : public UBExportAdaptor
{
Q_OBJECT;
public:
UBExportCFF(QObject *parent = 0);
virtual ~UBExportCFF();
virtual QString exportName();
virtual QString exportExtention();
virtual void persist(UBDocumentProxy* pDocument);
};
#endif /* UBExportCFF_H_ */
\ No newline at end of file
...@@ -36,6 +36,8 @@ ...@@ -36,6 +36,8 @@
#include "frameworks/UBFileSystemUtils.h" #include "frameworks/UBFileSystemUtils.h"
#include "customWidgets/UBMediaWidget.h"
#include "core/memcheck.h" #include "core/memcheck.h"
......
...@@ -39,6 +39,7 @@ class QTextEdit; ...@@ -39,6 +39,7 @@ class QTextEdit;
class QWidget; class QWidget;
class UBTGAdaptableText; class UBTGAdaptableText;
class QDomElement; class QDomElement;
class UBMediaWidget;
typedef struct typedef struct
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment