Merge pull request #593 (Full URL Support in bitcoin-qt)
[novacoin.git] / src / qt / bitcoingui.cpp
index d77279d..f9f92f0 100644 (file)
@@ -670,6 +670,13 @@ void BitcoinGUI::dropEvent(QDropEvent *event)
     event->acceptProposedAction();
 }
 
+void BitcoinGUI::handleURL(QString strURL)
+{
+    gotoSendCoinsPage();
+    QUrl url = QUrl(strURL);
+    sendCoinsPage->handleURL(&url);
+}
+
 void BitcoinGUI::setEncryptionStatus(int status)
 {
     switch(status)