File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ void BitcoinApplication::parameterSetup()
281
281
m_node.initParameterInteraction ();
282
282
}
283
283
284
- void BitcoinApplication::SetPrune (bool prune)
284
+ void BitcoinApplication::InitializePruneSetting (bool prune)
285
285
{
286
286
// If prune is set, intentionally override existing prune size with
287
287
// the default size since this is called when choosing a new datadir.
@@ -564,7 +564,7 @@ int GuiMain(int argc, char* argv[])
564
564
565
565
if (did_show_intro) {
566
566
// Store intro dialog settings other than datadir (network specific)
567
- app.SetPrune (prune);
567
+ app.InitializePruneSetting (prune);
568
568
}
569
569
570
570
if (gArgs .GetBoolArg (" -splash" , DEFAULT_SPLASHSCREEN) && !gArgs .GetBoolArg (" -min" , false ))
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ class BitcoinApplication: public QApplication
67
67
void parameterSetup ();
68
68
// / Create options model
69
69
void createOptionsModel (bool resetSettings);
70
- // / Update prune value
71
- void SetPrune (bool prune);
70
+ // / Initialize prune setting
71
+ void InitializePruneSetting (bool prune);
72
72
// / Create main window
73
73
void createWindow (const NetworkStyle *networkStyle);
74
74
// / Create splash screen
You can’t perform that action at this time.
0 commit comments