https://bugs.documentfoundation.org/show_bug.cgi?id=120158

--- Comment #10 from Julien Nabet <[email protected]> ---
the pb isn't subtype() but quotedPValue.
It throws here:
https://opengrok.libreoffice.org/xref/core/dtrans/source/cnttype/mcnttype.cxx#298
283      while ( !m_nxtSym.isEmpty( ) )
284      {
285          if ( bAfterQuoteSign && (
286              (m_nxtSym == SPACE) ||
287              (m_nxtSym == SEMICOLON))
288             )
289          {
290              break;
291          }
292          else if ( isInRange( m_nxtSym, OUStringLiteral(TOKEN) + TSPECIALS
+ SPACE ) )
293          {
294              pvalue.append(m_nxtSym);
295              bAfterQuoteSign = m_nxtSym == "\"";
296          }
297          else
298              throw IllegalArgumentException( );  <---- HERE
299          getSym( );
300      }

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to