mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-02-01 00:49:58 +01:00
Wrap code for better readability
This commit is contained in:
@@ -33,8 +33,15 @@ class QObject;
|
||||
class QPropertyUndoCommand : public QUndoCommand
|
||||
{
|
||||
public:
|
||||
QPropertyUndoCommand(QObject *object, const char *property_name, const QVariant &old_value, const QVariant &new_value, QUndoCommand *parent = nullptr);
|
||||
QPropertyUndoCommand(QObject *object, const char *property_name, const QVariant &old_value, QUndoCommand *parent = nullptr);
|
||||
QPropertyUndoCommand(QObject *object,
|
||||
const char *property_name,
|
||||
const QVariant &old_value,
|
||||
const QVariant &new_value,
|
||||
QUndoCommand *parent = nullptr);
|
||||
QPropertyUndoCommand(QObject *object,
|
||||
const char *property_name,
|
||||
const QVariant &old_value,
|
||||
QUndoCommand *parent = nullptr);
|
||||
QPropertyUndoCommand(const QPropertyUndoCommand *other);
|
||||
|
||||
void setNewValue(const QVariant &new_value);
|
||||
|
||||
Reference in New Issue
Block a user