Made tooltip getDeviceIcon return const string
parent
05effad18b
commit
c4282cfacc
|
@ -12,7 +12,7 @@ class UPowerTooltip : public Gtk::Window {
|
|||
private:
|
||||
typedef std::unordered_map<std::string, UpDevice*> Devices;
|
||||
|
||||
std::string getDeviceIcon(UpDeviceKind& kind);
|
||||
const std::string getDeviceIcon(UpDeviceKind& kind);
|
||||
|
||||
Gtk::Box* contentBox;
|
||||
|
||||
|
|
|
@ -96,7 +96,7 @@ uint UPowerTooltip::updateTooltip(Devices& devices) {
|
|||
return deviceCount;
|
||||
}
|
||||
|
||||
std::string UPowerTooltip::getDeviceIcon(UpDeviceKind& kind) {
|
||||
const std::string UPowerTooltip::getDeviceIcon(UpDeviceKind& kind) {
|
||||
switch (kind) {
|
||||
case UP_DEVICE_KIND_LINE_POWER:
|
||||
return "ac-adapter-symbolic";
|
||||
|
|
Loading…
Reference in New Issue