Merge pull request #854 from laanwj/2012_02_qtipc
Restructure IPC URL handling (fixes #851)
This commit is contained in:
@@ -729,7 +729,7 @@ void BitcoinGUI::dropEvent(QDropEvent *event)
|
||||
QList<QUrl> urls = event->mimeData()->urls();
|
||||
foreach(const QUrl &url, urls)
|
||||
{
|
||||
sendCoinsPage->handleURL(&url);
|
||||
sendCoinsPage->handleURL(url.toString());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -739,8 +739,7 @@ void BitcoinGUI::dropEvent(QDropEvent *event)
|
||||
void BitcoinGUI::handleURL(QString strURL)
|
||||
{
|
||||
gotoSendCoinsPage();
|
||||
QUrl url = QUrl(strURL);
|
||||
sendCoinsPage->handleURL(&url);
|
||||
sendCoinsPage->handleURL(strURL);
|
||||
}
|
||||
|
||||
void BitcoinGUI::setEncryptionStatus(int status)
|
||||
|
||||
Reference in New Issue
Block a user