Browse Source

Fix a typo

Signed-off-by: falkTX <falktx@falktx.com>
pull/321/head
falkTX 2 years ago
parent
commit
e22b971a12
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      distrho/extra/FileBrowserDialogImpl.cpp

+ 1
- 1
distrho/extra/FileBrowserDialogImpl.cpp View File

@@ -62,7 +62,7 @@ static const char* const kSelectedFileCancelled = "__dpf_cancelled__";
#ifdef HAVE_DBUS
static constexpr bool isHexChar(const char c) noexcept
{
return c >= '0' && c <= 'f' && (c < '9' || (c >= 'A' && c <= 'F') || c >= 'a');
return c >= '0' && c <= 'f' && (c <= '9' || (c >= 'A' && c <= 'F') || c >= 'a');
}

static constexpr int toHexChar(const char c) noexcept


Loading…
Cancel
Save