mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
library: check d/o escape seq value <= 255, better error messages
GUI: cliwindow: `#if _WIN32` -> `#ifdef _WIN32`, add "-Wundef" check to cmake cmake: backend: add C90 (C89) compat compiler check docs: update "README" pandoc, "README.linux" (Fedora 39 -> 40) tests: test_png: add some more text examples
This commit is contained in:
@ -44,7 +44,7 @@ CLIWindow::CLIWindow(BarcodeItem *bc, const bool autoHeight, const double height
|
||||
QByteArray geometry = settings.value(QSL("studio/cli/window_geometry")).toByteArray();
|
||||
restoreGeometry(geometry);
|
||||
|
||||
#if _WIN32
|
||||
#ifdef _WIN32
|
||||
const int index = settings.value(QSL("studio/cli/rad_unix_win"), 1).toInt();
|
||||
#else
|
||||
const int index = settings.value(QSL("studio/cli/rad_unix_win"), 0).toInt();
|
||||
|
Reference in New Issue
Block a user