Skip to content

Commit

Permalink
Merge pull request #2 from idleroamer/master
Browse files Browse the repository at this point in the history
update the fork
  • Loading branch information
idleroamer authored Sep 14, 2020
2 parents 47b4a42 + 9b3e7d3 commit 1ae29f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ipc/dbus/DBusRequestHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ class FaceliftIPCLibDBus_EXPORT DBusRequestHandler
virtual void handleSignals(DBusIPCMessage& msg) = 0;
virtual const QList<QString>& getSignals() const = 0;
virtual void setServiceRegistered(bool isRegistered) = 0;

virtual ~DBusRequestHandler() = default;
};

} // end namespace dbus
Expand Down
1 change: 1 addition & 0 deletions src/ipc/ipc-common/IPCProxyNewBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ IPCProxyNewBase::IPCProxyNewBase(InterfaceBase &owner) : m_ipc(owner, &owner)
{
QObject::connect(&owner, &InterfaceBase::componentCompleted, &m_ipc, &IPCProxyBinderBase::onComponentCompleted);
}
IPCProxyNewBase::~IPCProxyNewBase() = default;

const QString &IPCProxyNewBase::objectPath() const
{
Expand Down
2 changes: 2 additions & 0 deletions src/ipc/ipc-common/IPCProxyNewBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class FaceliftIPCCommonLib_EXPORT IPCProxyNewBase
public:
IPCProxyNewBase(InterfaceBase &owner);

virtual ~IPCProxyNewBase();

virtual void refreshProvider() = 0;

const QString &objectPath() const;
Expand Down

0 comments on commit 1ae29f1

Please sign in to comment.