Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/proxy/keepassxc-proxy.cpp')
-rw-r--r--src/proxy/keepassxc-proxy.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/proxy/keepassxc-proxy.cpp b/src/proxy/keepassxc-proxy.cpp
index ea472b2c3..b2a2b1458 100644
--- a/src/proxy/keepassxc-proxy.cpp
+++ b/src/proxy/keepassxc-proxy.cpp
@@ -16,8 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "NativeMessagingHost.h"
+#include "NativeMessagingProxy.h"
#include <QCoreApplication>
+
#include <iostream>
#ifndef Q_OS_WIN
@@ -79,6 +80,6 @@ int main(int argc, char* argv[])
#else
SetConsoleCtrlHandler(static_cast<PHANDLER_ROUTINE>(ConsoleHandler), TRUE);
#endif
- NativeMessagingHost host;
+ NativeMessagingProxy proxy;
return a.exec();
}