tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / shell / source / unix / exec / shellexec_em.cxx
blob219eac969416ecb22deb9205d5b98d704ee8ce0e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 /**
11 * Some of our templating stuff clashes with EM_ASM / MAIN_THREAD_EM_ASM:
13 * shellexec.cxx:250:5: error: called object type 'const char *' is not a function or function pointer
14 * MAIN_THREAD_EM_ASM(
15 * ^
16 * git_emsdk/upstream/emscripten/cache/sysroot/include/emscripten/em_asm.h:208:39: note: expanded from macro 'MAIN_THREAD_EM_ASM'
17 * #define MAIN_THREAD_EM_ASM(code, ...) ((void)emscripten_asm_const_int_sync_on_main_thread(CODE_EXPR(#code) _EM_ASM_PREP_ARGS(__VA_ARGS__)))
18 * ^
19 * 1 error generated.
21 * so as a workaround the EM_ASM call is now in an extra file.
24 #include <emscripten.h>
26 void execute_browser(const char* sUrl) { EM_ASM("window.open(UTF8ToString($0));", sUrl); }
28 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */