Bitcoin-Qt: remove obsolete modal flag from GUI APIs
- as we (can) supply the CClientUIInterface::MODAL flag via the style parameter, we don't need a separate bool for checking the modality
This commit is contained in:
@@ -124,11 +124,10 @@ public slots:
|
||||
/** Notify the user of an event from the core network or transaction handling code.
|
||||
@param[in] title the message box / notification title
|
||||
@param[in] message the displayed text
|
||||
@param[in] modal true to use a message box, false to use a notification
|
||||
@param[in] style style definitions (icon and used buttons - buttons only for message boxes)
|
||||
@param[in] style modality and style definitions (icon and used buttons - buttons only for message boxes)
|
||||
@see CClientUIInterface::MessageBoxFlags
|
||||
*/
|
||||
void message(const QString &title, const QString &message, bool modal, unsigned int style);
|
||||
void message(const QString &title, const QString &message, unsigned int style);
|
||||
/** Asks the user whether to pay the transaction fee or to cancel the transaction.
|
||||
It is currently not possible to pass a return value to another thread through
|
||||
BlockingQueuedConnection, so an indirected pointer is used.
|
||||
|
||||
Reference in New Issue
Block a user