Kaydet (Commit) 94979c53 authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

remove useless cast causing a warning

Change-Id: I802dd3d98d5f223d64c90f9020a6dc3eaa1f9c76
üst ab14c7e3
......@@ -4434,7 +4434,7 @@ uno::Any SwXTableColumns::getByIndex(sal_Int32 nIndex)
throw( lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
{
SolarMutexGuard aGuard;
if(nIndex < 0 || getCount() <= static_cast<size_t>(nIndex))
if(nIndex < 0 || getCount() <= nIndex)
throw lang::IndexOutOfBoundsException();
return uno::makeAny(uno::Reference<uno::XInterface>()); // i#21699 not supported
}
......
Markdown is supported
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