mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 08:45:36 +08:00
refactor: Use chrono instead of plain ints
This commit is contained in:
@@ -126,9 +126,12 @@ namespace swift::gui
|
||||
//! @{
|
||||
//! direct access to main application window
|
||||
bool displayInStatusBar(const swift::misc::CStatusMessage &message) override;
|
||||
bool displayInOverlayWindow(const swift::misc::CStatusMessage &message, int timeOutMs = -1) override;
|
||||
bool displayInOverlayWindow(const swift::misc::CStatusMessageList &messages, int timeOutMs = -1) override;
|
||||
bool displayInOverlayWindow(const QString &html, int timeOutMs = -1) override;
|
||||
bool displayInOverlayWindow(const swift::misc::CStatusMessage &message,
|
||||
std::chrono::milliseconds timeout = std::chrono::milliseconds(0)) override;
|
||||
bool displayInOverlayWindow(const swift::misc::CStatusMessageList &messages,
|
||||
std::chrono::milliseconds timeout = std::chrono::milliseconds(0)) override;
|
||||
bool displayInOverlayWindow(const QString &html,
|
||||
std::chrono::milliseconds timeout = std::chrono::milliseconds(0)) override;
|
||||
//! @}
|
||||
|
||||
// -------- Splash screen related ---------
|
||||
|
||||
Reference in New Issue
Block a user