mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-24 12:34:39 +03:00
currentObject -> object
This commit is contained in:
parent
deddd22eb4
commit
2bbd963c18
@ -934,7 +934,7 @@ void ReportDesignWindow::slotNewBand(int bandType)
|
||||
|
||||
void ReportDesignWindow::slotItemSelected(LimeReport::BaseDesignIntf *item)
|
||||
{
|
||||
if (m_objectInspector->currentObject()!=item){
|
||||
if (m_objectInspector->object()!=item){
|
||||
|
||||
m_newSubDetail->setEnabled(false);
|
||||
m_newSubDetailHeader->setEnabled(false);
|
||||
@ -989,7 +989,7 @@ void ReportDesignWindow::slotItemPropertyChanged(const QString &objectName, cons
|
||||
Q_UNUSED(oldValue)
|
||||
Q_UNUSED(newValue)
|
||||
|
||||
if (m_objectInspector->currentObject()&&(m_objectInspector->currentObject()->objectName()==objectName)){
|
||||
if (m_objectInspector->object()&&(m_objectInspector->object()->objectName()==objectName)){
|
||||
m_objectInspector->updateProperty(propertyName);
|
||||
}
|
||||
}
|
||||
|
@ -238,8 +238,6 @@ private:
|
||||
QSignalMapper* m_recentFilesSignalMap;
|
||||
|
||||
ObjectInspectorWidget* m_objectInspector;
|
||||
//QObjectPropertyModel* m_propertyModel;
|
||||
|
||||
ReportDesignWidget* m_reportDesignWidget;
|
||||
DataBrowser * m_dataBrowser;
|
||||
ScriptBrowser* m_scriptBrowser;
|
||||
|
@ -244,7 +244,7 @@ void ObjectInspectorWidget::setSubclassesAsLevel(bool value)
|
||||
m_propertyModel->setSubclassesAsLevel(value);
|
||||
}
|
||||
|
||||
const QObject *ObjectInspectorWidget::currentObject(){
|
||||
const QObject *ObjectInspectorWidget::object(){
|
||||
return m_propertyModel->currentObject();
|
||||
}
|
||||
|
||||
|
@ -83,8 +83,8 @@ public:
|
||||
void setValidator(ValidatorIntf *validator);
|
||||
bool subclassesAsLevel();
|
||||
void setSubclassesAsLevel(bool value);
|
||||
void setObject(QObject* object);
|
||||
const QObject* currentObject();
|
||||
void setObject(QObject* setObject);
|
||||
const QObject* object();
|
||||
void setMultiObjects(QList<QObject *>* list);
|
||||
void clearObjectsList();
|
||||
void updateProperty(const QString &propertyName);
|
||||
|
Loading…
Reference in New Issue
Block a user