mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2026-02-23 03:33:57 +11:00
docs: remove }; in headers + typo fixes
}; breaks the docgen regex
This commit is contained in:
parent
3bbf39c67e
commit
4dad447570
14 changed files with 79 additions and 79 deletions
|
|
@ -22,7 +22,7 @@ class UPower: public QObject {
|
|||
public:
|
||||
[[nodiscard]] UPowerDevice* displayDevice();
|
||||
[[nodiscard]] ObjectModel<UPowerDevice>* devices();
|
||||
[[nodiscard]] QBindable<bool> bindableOnBattery() const { return &this->bOnBattery; };
|
||||
[[nodiscard]] QBindable<bool> bindableOnBattery() const { return &this->bOnBattery; }
|
||||
|
||||
static UPower* instance();
|
||||
|
||||
|
|
|
|||
|
|
@ -173,25 +173,25 @@ public:
|
|||
[[nodiscard]] QString address() const;
|
||||
[[nodiscard]] QString path() const;
|
||||
|
||||
[[nodiscard]] QBindable<UPowerDeviceType::Enum> bindableType() const { return &this->bType; };
|
||||
[[nodiscard]] QBindable<bool> bindablePowerSupply() const { return &this->bPowerSupply; };
|
||||
[[nodiscard]] QBindable<qreal> bindableEnergy() const { return &this->bEnergy; };
|
||||
[[nodiscard]] QBindable<qreal> bindableEnergyCapacity() const { return &this->bEnergyCapacity; };
|
||||
[[nodiscard]] QBindable<qreal> bindableChangeRate() const { return &this->bChangeRate; };
|
||||
[[nodiscard]] QBindable<qlonglong> bindableTimeToEmpty() const { return &this->bTimeToEmpty; };
|
||||
[[nodiscard]] QBindable<qlonglong> bindableTimeToFull() const { return &this->bTimeToFull; };
|
||||
[[nodiscard]] QBindable<qreal> bindablePercentage() const { return &this->bPercentage; };
|
||||
[[nodiscard]] QBindable<bool> bindableIsPresent() const { return &this->bIsPresent; };
|
||||
[[nodiscard]] QBindable<UPowerDeviceState::Enum> bindableState() const { return &this->bState; };
|
||||
[[nodiscard]] QBindable<UPowerDeviceType::Enum> bindableType() const { return &this->bType; }
|
||||
[[nodiscard]] QBindable<bool> bindablePowerSupply() const { return &this->bPowerSupply; }
|
||||
[[nodiscard]] QBindable<qreal> bindableEnergy() const { return &this->bEnergy; }
|
||||
[[nodiscard]] QBindable<qreal> bindableEnergyCapacity() const { return &this->bEnergyCapacity; }
|
||||
[[nodiscard]] QBindable<qreal> bindableChangeRate() const { return &this->bChangeRate; }
|
||||
[[nodiscard]] QBindable<qlonglong> bindableTimeToEmpty() const { return &this->bTimeToEmpty; }
|
||||
[[nodiscard]] QBindable<qlonglong> bindableTimeToFull() const { return &this->bTimeToFull; }
|
||||
[[nodiscard]] QBindable<qreal> bindablePercentage() const { return &this->bPercentage; }
|
||||
[[nodiscard]] QBindable<bool> bindableIsPresent() const { return &this->bIsPresent; }
|
||||
[[nodiscard]] QBindable<UPowerDeviceState::Enum> bindableState() const { return &this->bState; }
|
||||
[[nodiscard]] QBindable<qreal> bindableHealthPercentage() const {
|
||||
return &this->bHealthPercentage;
|
||||
};
|
||||
[[nodiscard]] QBindable<bool> bindableHealthSupported() const { return &this->bHealthSupported; };
|
||||
[[nodiscard]] QBindable<QString> bindableIconName() const { return &this->bIconName; };
|
||||
[[nodiscard]] QBindable<bool> bindableIsLaptopBattery() const { return &this->bIsLaptopBattery; };
|
||||
[[nodiscard]] QBindable<QString> bindableNativePath() const { return &this->bNativePath; };
|
||||
[[nodiscard]] QBindable<QString> bindableModel() const { return &this->bModel; };
|
||||
[[nodiscard]] QBindable<bool> bindableReady() const { return &this->bReady; };
|
||||
}
|
||||
[[nodiscard]] QBindable<bool> bindableHealthSupported() const { return &this->bHealthSupported; }
|
||||
[[nodiscard]] QBindable<QString> bindableIconName() const { return &this->bIconName; }
|
||||
[[nodiscard]] QBindable<bool> bindableIsLaptopBattery() const { return &this->bIsLaptopBattery; }
|
||||
[[nodiscard]] QBindable<QString> bindableNativePath() const { return &this->bNativePath; }
|
||||
[[nodiscard]] QBindable<QString> bindableModel() const { return &this->bModel; }
|
||||
[[nodiscard]] QBindable<bool> bindableReady() const { return &this->bReady; }
|
||||
|
||||
signals:
|
||||
QSDOC_HIDE void readyChanged();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue