mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
typo fixed
This commit is contained in:
parent
98cf12984e
commit
77f26a846b
@ -507,7 +507,7 @@ QObject *ProxyDesc::elementAt(const QString &collectionName, int index)
|
||||
|
||||
ProxyHolder::ProxyHolder(ProxyDesc* desc, DataSourceManager* dataManager)
|
||||
:m_model(0), m_desc(desc), m_lastError(""), m_mode(IDataSource::RENDER_MODE),
|
||||
m_invalid(false), m_dataManger(dataManager)
|
||||
m_invalid(false), m_dataManager(dataManager)
|
||||
{}
|
||||
|
||||
QString ProxyHolder::masterDatasource()
|
||||
|
@ -337,7 +337,7 @@ public:
|
||||
void invalidate(IDataSource::DatasourceMode mode, bool dbWillBeClosed = false);
|
||||
void update(){}
|
||||
void clearErrors(){m_lastError = "";}
|
||||
DataSourceManager* dataManager() const {return m_dataManger;}
|
||||
DataSourceManager* dataManager() const {return m_dataManager;}
|
||||
private slots:
|
||||
void slotChildModelDestoroyed();
|
||||
private:
|
||||
@ -347,7 +347,7 @@ private:
|
||||
QString m_lastError;
|
||||
IDataSource::DatasourceMode m_mode;
|
||||
bool m_invalid;
|
||||
DataSourceManager* m_dataManger;
|
||||
DataSourceManager* m_dataManager;
|
||||
};
|
||||
|
||||
class ModelToDataSource : public QObject, public IDataSource{
|
||||
|
@ -262,7 +262,7 @@ bool ScriptEngineManager::addFunction(const JSFunctionDesc &functionDescriber)
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
m_lastError = tr("Function manger with name \"%1\" already exists!");
|
||||
m_lastError = tr("Function manager with name \"%1\" already exists!");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -232,10 +232,10 @@ public:
|
||||
const QString& functionCategory,
|
||||
const QString& functionDescription,
|
||||
const QString& functionManagerName,
|
||||
QObject* functionManger,
|
||||
QObject* functionManager,
|
||||
const QString& functionScriptWrapper
|
||||
): m_name(functionName), m_category(functionCategory), m_description(functionDescription),
|
||||
m_managerName(functionManagerName), m_manager(functionManger), m_scriptWrapper(functionScriptWrapper)
|
||||
m_managerName(functionManagerName), m_manager(functionManager), m_scriptWrapper(functionScriptWrapper)
|
||||
{}
|
||||
QString name() const;
|
||||
void setName(const QString &name);
|
||||
|
@ -7,11 +7,11 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>397</width>
|
||||
<height>378</height>
|
||||
<height>345</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Minimum">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
@ -20,6 +20,9 @@
|
||||
<string>Designer setting</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<property name="sizeConstraint">
|
||||
<enum>QLayout::SetDefaultConstraint</enum>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox_3">
|
||||
<property name="title">
|
||||
|
Loading…
Reference in New Issue
Block a user