Skip to content

Commit

Permalink
added bitmessage command string for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
wellenreiter01 committed Oct 11, 2015
1 parent 3aba58c commit 48e5730
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/qt/bitcoingui.cpp
Expand Up @@ -704,7 +704,11 @@ void BitcoinGUI::openClicked()
void BitcoinGUI::openBitmessageClicked()
{
QProcess *process = new QProcess;
#if defined(Q_OS_LINUX)
QString program="pybitmessage";
#else
QString program="./bitmessagemain";
#endif
QStringList arguments;
arguments << "";
process->start(program,arguments);
Expand Down

0 comments on commit 48e5730

Please sign in to comment.