Use standard types instead of typedefs wherever possible
This commit is contained in:
parent
efc594f888
commit
f0a9278511
12 changed files with 90 additions and 100 deletions
|
@ -12,11 +12,11 @@ PropsServer::PropsServer(DBus::Connection &connection)
|
|||
}
|
||||
|
||||
void PropsServer::on_set_property
|
||||
(DBus::InterfaceAdaptor &interface, const DBus::String &property, const DBus::Variant &value)
|
||||
(DBus::InterfaceAdaptor &interface, const std::string &property, const DBus::Variant &value)
|
||||
{
|
||||
if (property == "Message")
|
||||
{
|
||||
DBus::String msg = value;
|
||||
std::string msg = value;
|
||||
this->MessageChanged(msg);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue