forked from qt-creator/qt-creator
Make missing uses of IDE name configurable
Change-Id: Ie89293b80adfacea19bcb949e4524f16fbb223f9 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -157,10 +157,12 @@ static inline QString msgCoreLoadFailure(const QString &why)
|
||||
static inline int askMsgSendFailed()
|
||||
{
|
||||
return QMessageBox::question(0, QApplication::translate("Application","Could not send message"),
|
||||
QCoreApplication::translate("Application", "Unable to send command line arguments to the already running instance. "
|
||||
"It appears to be not responding. Do you want to start a new instance of Creator?"),
|
||||
QMessageBox::Yes | QMessageBox::No | QMessageBox::Retry,
|
||||
QMessageBox::Retry);
|
||||
QCoreApplication::translate("Application", "Unable to send command line arguments "
|
||||
"to the already running instance. It appears to be not "
|
||||
"responding. Do you want to start a new instance of "
|
||||
"%1?").arg(Core::Constants::IDE_DISPLAY_NAME),
|
||||
QMessageBox::Yes | QMessageBox::No | QMessageBox::Retry,
|
||||
QMessageBox::Retry);
|
||||
}
|
||||
|
||||
static void setHighDpiEnvironmentVariable()
|
||||
|
||||
Reference in New Issue
Block a user