Updated some changes to userinfo
[situare] / src / ui / userpanel.cpp
index 99eeaa8..b5297ac 100644 (file)
@@ -63,6 +63,18 @@ UserInfoPanel::UserInfoPanel(QWidget *parent)
             m_userPanelSlidingBar, SIGNAL(clicked()), m_userPanelStateClosed);
     m_userPanelTransitionClose->addAnimation(new QPropertyAnimation(this, "pos", this));
 
+    connect(m_userInfo,SIGNAL(requestReverseGeo()),
+            this, SIGNAL(requestReverseGeo()));
+
+    connect(this, SIGNAL(reverseGeoReady(QString)),
+            m_userInfo, SIGNAL(reverseGeoReady(QString)));
+
+    connect(m_userInfo, SIGNAL(statusUpdate(QString,bool)),
+            this, SIGNAL(statusUpdate(QString,bool)));
+
+    connect(m_userInfo, SIGNAL(refreshUserData()),
+            this, SIGNAL(refreshUserData()));
+
     m_userPanelStateMachine->start();
     setObjectName("UserPanel");
 }