Commit eda8af2a authored by hjk's avatar hjk
Browse files

Make QAccessible compile with -Werror


GCC was bailing out when attempting to merge this into the dev
branch due to the use of "potentially uninitialized values".

Change-Id: Id2fc4a123a4b180b9ab439429a0d20245c7ee41b
Reviewed-by: default avatarThiago Macieira <thiago.macieira@intel.com>
No related merge requests found
Showing with 6 additions and 0 deletions
...@@ -1991,6 +1991,8 @@ QString QAccessibleTextInterface::textBeforeOffset(int offset, QAccessible::Text ...@@ -1991,6 +1991,8 @@ QString QAccessibleTextInterface::textBeforeOffset(int offset, QAccessible::Text
case QAccessible::NoBoundary: case QAccessible::NoBoundary:
// return empty, this function currently only supports single lines, so there can be no line before // return empty, this function currently only supports single lines, so there can be no line before
return QString(); return QString();
default:
Q_UNREACHABLE();
} }
// keep behavior in sync with QTextCursor::movePosition()! // keep behavior in sync with QTextCursor::movePosition()!
...@@ -2063,6 +2065,8 @@ QString QAccessibleTextInterface::textAfterOffset(int offset, QAccessible::TextB ...@@ -2063,6 +2065,8 @@ QString QAccessibleTextInterface::textAfterOffset(int offset, QAccessible::TextB
case QAccessible::NoBoundary: case QAccessible::NoBoundary:
// return empty, this function currently only supports single lines, so there can be no line after // return empty, this function currently only supports single lines, so there can be no line after
return QString(); return QString();
default:
Q_UNREACHABLE();
} }
// keep behavior in sync with QTextCursor::movePosition()! // keep behavior in sync with QTextCursor::movePosition()!
...@@ -2150,6 +2154,8 @@ QString QAccessibleTextInterface::textAtOffset(int offset, QAccessible::TextBoun ...@@ -2150,6 +2154,8 @@ QString QAccessibleTextInterface::textAtOffset(int offset, QAccessible::TextBoun
*startOffset = 0; *startOffset = 0;
*endOffset = txt.length(); *endOffset = txt.length();
return txt; return txt;
default:
Q_UNREACHABLE();
} }
// keep behavior in sync with QTextCursor::movePosition()! // keep behavior in sync with QTextCursor::movePosition()!
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment