@@ -88,7 +88,7 @@ void ProposalFrame::refresh()
8888
8989 QLabel* strProposalURL = new QLabel ();
9090 strProposalURL->setObjectName (QStringLiteral (" strProposalURL" ));
91- QString strURL = QString::fromStdString (proposal->GetFixedupURL ());
91+ QString strURL = QString::fromStdString (proposal->GetURL ());
9292 QString strClick = tr (" Open proposal page in browser" );
9393 strProposalURL->setText (" <a href=\" " + strURL + " \" >" + strClick + " </a>" );
9494 strProposalURL->setTextFormat (Qt::RichText);
@@ -182,7 +182,7 @@ void ProposalFrame::proposalLink_clicked(const QString &link)
182182{
183183 QMessageBox Msgbox;
184184 QString strMsgBox = tr (" A proposal URL can be used for phishing, scams and computer viruses. Open this link only if you trust the following URL.\n " );
185- strMsgBox += QString::fromStdString (proposal->GetFixedupURL ());
185+ strMsgBox += QString::fromStdString (proposal->GetURL ());
186186 Msgbox.setText (strMsgBox);
187187 Msgbox.setStandardButtons (QMessageBox::Cancel);
188188 QAbstractButton *openButton = Msgbox.addButton (tr (" Open link" ), QMessageBox::ApplyRole);
@@ -192,10 +192,10 @@ void ProposalFrame::proposalLink_clicked(const QString &link)
192192 Msgbox.exec ();
193193
194194 if (Msgbox.clickedButton () == openButton) {
195- QDesktopServices::openUrl (QUrl (QString::fromStdString (proposal->GetFixedupURL ())));
195+ QDesktopServices::openUrl (QUrl (QString::fromStdString (proposal->GetURL ())));
196196 }
197197 if (Msgbox.clickedButton () == copyButton) {
198- QGuiApplication::clipboard ()->setText (QString::fromStdString (proposal->GetFixedupURL ()));
198+ QGuiApplication::clipboard ()->setText (QString::fromStdString (proposal->GetURL ()));
199199 }
200200 governancePage->lockUpdating (false );
201201}
@@ -246,7 +246,7 @@ void ProposalFrame::voteButton_clicked(int nVote)
246246 questionString += tr (" using all your masternodes?" );
247247 questionString += " <br /><br />" ;
248248 questionString += tr (" Proposal Hash:" ) + " " + QString::fromStdString (proposal->GetHash ().ToString ()) + " <br />" ;
249- questionString += tr (" Proposal URL:" ) + " " + QString::fromStdString (proposal->GetFixedupURL ());
249+ questionString += tr (" Proposal URL:" ) + " " + QString::fromStdString (proposal->GetURL ());
250250 governancePage->lockUpdating (true );
251251 QMessageBox::StandardButton retval = QMessageBox::question (this , tr (" Confirm Vote" ),
252252 questionString,
0 commit comments