From 91126037e0e81007657b2bb369a2214d561b962b Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Tue, 5 Apr 2016 14:18:08 -0700 Subject: [PATCH] Fix showDesktop SIGNAL --- libraries/ui/src/OffscreenUi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ui/src/OffscreenUi.cpp b/libraries/ui/src/OffscreenUi.cpp index 745a28eb0b..269cf86e2d 100644 --- a/libraries/ui/src/OffscreenUi.cpp +++ b/libraries/ui/src/OffscreenUi.cpp @@ -447,7 +447,7 @@ void OffscreenUi::createDesktop(const QUrl& url) { new KeyboardFocusHack(); - connect(_desktop, SIGNAL(showDesktop()), this, SLOT(showDesktop())); + connect(_desktop, SIGNAL(showDesktop()), this, SIGNAL(showDesktop())); } QQuickItem* OffscreenUi::getDesktop() {