From 2b8ac717823d4afbdddec5f05708edfa9a73c832 Mon Sep 17 00:00:00 2001 From: Robert Pollak Date: Thu, 20 Sep 2018 21:26:48 +0000 Subject: [PATCH] Fix the name of the autostart entry When "Start Peercoin on system login" is selected, the created autostart entry should not be called "Bitcoin". --- src/qt/guiutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index 73fa5c5fd0b..9b1d6cd3933 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -421,7 +421,7 @@ bool SetStartOnSystemStartup(bool fAutoStart) // Write a bitcoin.desktop file to the autostart directory: optionFile << "[Desktop Entry]\n"; optionFile << "Type=Application\n"; - optionFile << "Name=Bitcoin\n"; + optionFile << "Name=Peercoin\n"; optionFile << "Exec=" << pszExePath << " -min\n"; optionFile << "Terminal=false\n"; optionFile << "Hidden=false\n";