mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-17 08:06:59 +01:00
Rebrand to Bitcoin Core
Only messages for now, executable names and other file names can be changed later if necessary and safe. Do not do an all-sweeping change. Some occurences of Bitcoin-Qt need to be kept: - Applicationname: this is used to determine the registry entry names, we don't want to lose settings over a silly name change. - Where it refers to the executable name instead of the product name.
This commit is contained in:
@@ -162,14 +162,14 @@ static void initTranslations(QTranslator &qtTranslatorBase, QTranslator &qtTrans
|
||||
void DebugMessageHandler(QtMsgType type, const char *msg)
|
||||
{
|
||||
Q_UNUSED(type);
|
||||
LogPrint("qt", "Bitcoin-Qt: %s\n", msg);
|
||||
LogPrint("qt", "GUI: %s\n", msg);
|
||||
}
|
||||
#else
|
||||
void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, const QString &msg)
|
||||
{
|
||||
Q_UNUSED(type);
|
||||
Q_UNUSED(context);
|
||||
LogPrint("qt", "Bitcoin-Qt: %s\n", qPrintable(msg));
|
||||
LogPrint("qt", "GUI: %s\n", qPrintable(msg));
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -364,7 +364,7 @@ int main(int argc, char *argv[])
|
||||
guiref = 0;
|
||||
delete walletModel;
|
||||
}
|
||||
// Shutdown the core and its threads, but don't exit Bitcoin-Qt here
|
||||
// Shutdown the core and its threads, but don't exit the GUI here
|
||||
threadGroup.interrupt_all();
|
||||
threadGroup.join_all();
|
||||
Shutdown();
|
||||
|
||||
Reference in New Issue
Block a user