0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 19:51:30 +03:00

Designer plugin interface renamed

This commit is contained in:
Arin Alexander
2018-06-21 13:38:47 +03:00
parent 39253b1f55
commit 1a189054f7
4 changed files with 8 additions and 8 deletions

View File

@@ -17,12 +17,12 @@ namespace LimeReport {
class ReportEnginePrivateInterface;
}
class LimeReportPluginInterface {
class LimeReportDesignerPluginInterface {
public:
virtual ~LimeReportPluginInterface() { }
virtual ~LimeReportDesignerPluginInterface() { }
virtual LimeReport::ReportDesignWindowInterface* getDesignerWindow(LimeReport::ReportEnginePrivateInterface* report, QWidget *parent = 0, QSettings* settings=0) = 0;
};
Q_DECLARE_INTERFACE( LimeReportPluginInterface, "ru.limereport.LimeReport.DesignerPluginInterface/1.0" )
Q_DECLARE_INTERFACE( LimeReportDesignerPluginInterface, "ru.limereport.LimeReport.DesignerPluginInterface/1.0" )
#endif // LRDESIGNERPLUGININTERFACE_H