Skip to content

Commit 948f113

Browse files
committed
gui: add missing translation.h include to fix build
After #19176, building the gui on Bionic is failing with: ```bash CXX qt/qt_libbitcoinqt_a-guiutil.o qt/bitcoin.cpp: In function 'int GuiMain(int, char**)': qt/bitcoin.cpp:460:35: error: 'Untranslated' was not declared in this scope node->initError(strprintf(Untranslated("Error parsing command line arguments: %s\n"), error)); ``` The merge commit also failed to compile with the same error: https://travis-ci.org/github/bitcoin/bitcoin/jobs/696627543
1 parent f8364df commit 948f113

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/qt/bitcoin.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <ui_interface.h>
3434
#include <uint256.h>
3535
#include <util/system.h>
36+
#include <util/translation.h>
3637
#include <util/threadnames.h>
3738
#include <validation.h>
3839

0 commit comments

Comments
 (0)