Fix OSX build errors.
This commit is contained in:
parent
4ac24cf59e
commit
940e22fd81
2 changed files with 2 additions and 2 deletions
|
@ -388,7 +388,7 @@ void BitcoinGUI::createTrayIcon()
|
||||||
#else
|
#else
|
||||||
// Note: On Mac, the dock icon is used to provide the tray's functionality.
|
// Note: On Mac, the dock icon is used to provide the tray's functionality.
|
||||||
MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance();
|
MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance();
|
||||||
connect(dockIconHandler, SIGNAL(dockIconClicked()), openBitcoinAction, SLOT(trigger()));
|
connect(dockIconHandler, SIGNAL(dockIconClicked()), toggleHideAction, SLOT(trigger()));
|
||||||
trayIconMenu = dockIconHandler->dockMenu();
|
trayIconMenu = dockIconHandler->dockMenu();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -805,7 +805,7 @@ boost::filesystem::path GetDefaultDataDir()
|
||||||
pathRet = fs::path(pszHome);
|
pathRet = fs::path(pszHome);
|
||||||
#ifdef MAC_OSX
|
#ifdef MAC_OSX
|
||||||
// Mac
|
// Mac
|
||||||
pathRet /= "Library" / "Application Support";
|
pathRet /= "Library/Application Support";
|
||||||
filesystem::create_directory(pathRet);
|
filesystem::create_directory(pathRet);
|
||||||
return pathRet / "Bitcoin";
|
return pathRet / "Bitcoin";
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue