build fix

This commit is contained in:
pokamest 2021-11-22 01:42:16 -08:00
parent c6548afa1b
commit 2e92705f9c
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,6 @@
#include "privileged_process.h"
#ifndef Q_OS_IOS
PrivilegedProcess::PrivilegedProcess() :
IpcProcessInterfaceReplica()
{
@ -25,3 +26,4 @@ void PrivilegedProcess::waitForFinished(int msecs)
loop->exec();
}
#endif // Q_OS_IOS

View file

@ -20,11 +20,11 @@ public:
};
#endif // PRIVILEGED_PROCESS_H
#else // defined Q_OS_IOS
class IpcProcessInterfaceReplica {};
class PrivilegedProcess {};
#endif
#endif // Q_OS_IOS
#endif // PRIVILEGED_PROCESS_H