Replace shortcut names with Dogecoin

At least on Windows this is user-facing in the Autostart folder.
This commit is contained in:
langerhans 2014-04-14 19:07:08 +02:00
parent d079f108bf
commit 4ca4a8d5d6

View file

@ -387,12 +387,12 @@ bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt)
#ifdef WIN32
boost::filesystem::path static StartupShortcutPath()
{
return GetSpecialFolderPath(CSIDL_STARTUP) / "Bitcoin.lnk";
return GetSpecialFolderPath(CSIDL_STARTUP) / "Dogecoin.lnk";
}
bool GetStartOnSystemStartup()
{
// check for Bitcoin.lnk
// check for Dogecoin.lnk
return boost::filesystem::exists(StartupShortcutPath());
}
@ -469,7 +469,7 @@ boost::filesystem::path static GetAutostartDir()
boost::filesystem::path static GetAutostartFilePath()
{
return GetAutostartDir() / "bitcoin.desktop";
return GetAutostartDir() / "dogecoin.desktop";
}
bool GetStartOnSystemStartup()