Ver código fonte

Fix debug overlay toggling

Failed because the toggleDebug() method can't be found dynamically if
it's not known to the MOC system.
Vincent Lang 9 anos atrás
pai
commit
92b2e1da22
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      src/ui/KonvergoWindow.h

+ 2 - 2
src/ui/KonvergoWindow.h

@@ -42,6 +42,8 @@ public:
     raise();
   }
 
+  Q_SLOT void toggleDebug();
+
   void reloadWeb()
   {
     emit reloadWebClient();
@@ -78,8 +80,6 @@ private:
   MouseEventFilter* m_eventFilter;
   QTimer* m_infoTimer;
   QString m_debugInfo, m_systemDebugInfo, m_videoInfo;
-
-  void toggleDebug();
 };
 
 #endif // KONVERGOWINDOW_H