diff options
| author | Gavin Andresen <[email protected]> | 2012-04-12 11:14:46 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-04-12 11:14:46 -0400 |
| commit | 940e22fd81af29dee6c07e413de1b446a21712b0 (patch) | |
| tree | 2ff1ad0c6e212fe1e09a9022ef68fb76768c75bc /src/qt/bitcoingui.cpp | |
| parent | Merge pull request #855 from sje397/ToggleHide (diff) | |
| download | discoin-940e22fd81af29dee6c07e413de1b446a21712b0.tar.xz discoin-940e22fd81af29dee6c07e413de1b446a21712b0.zip | |
Fix OSX build errors.
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 9c1e05d0c..3c31f291c 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -388,7 +388,7 @@ void BitcoinGUI::createTrayIcon() #else // Note: On Mac, the dock icon is used to provide the tray's functionality. MacDockIconHandler *dockIconHandler = MacDockIconHandler::instance(); - connect(dockIconHandler, SIGNAL(dockIconClicked()), openBitcoinAction, SLOT(trigger())); + connect(dockIconHandler, SIGNAL(dockIconClicked()), toggleHideAction, SLOT(trigger())); trayIconMenu = dockIconHandler->dockMenu(); #endif |