diff options
| author | Neil Hodgson <nyamatongwe@gmail.com> | 2021-04-15 09:32:08 +1000 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@gmail.com> | 2021-04-15 09:32:08 +1000 |
| commit | 5e402ef7a740dd939eaf5745f6f589daab683ce5 (patch) | |
| tree | 4fc86884db56e67430e599c745c167c6684de443 | |
| parent | 10a389166329b423be6d8e83197fee7d61512913 (diff) | |
| download | scintilla-mirror-5e402ef7a740dd939eaf5745f6f589daab683ce5.tar.gz | |
Add default case to IME checking of underline type to prevent warnings.
| -rwxr-xr-x | gtk/ScintillaGTK.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 8bfc4e471..7a1548be7 100755 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -2371,6 +2371,7 @@ std::vector<int> MapImeIndicators(PangoAttrList *attrs, const char *u8Str) { case PANGO_UNDERLINE_DOUBLE: case PANGO_UNDERLINE_LOW: case PANGO_UNDERLINE_ERROR: + default: break; } } |
