Kaydet (Commit) 854da46a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

This shall probably use the value of getMaxColumnsInIndex()

Change-Id: I1ae85e416440768ab40c817506d5b106289c4d72
üst 67afa78a
......@@ -493,7 +493,7 @@ void OTableController::doEditIndexes()
if (!xIndexes.is())
return;
DbaIndexDialog aDialog(getView(), aFieldNames, xIndexes, getConnection(), getORB(), isConnected() ? getConnection()->getMetaData().is() && getConnection()->getMetaData()->getMaxColumnsInIndex() : sal_Int32(0));
DbaIndexDialog aDialog(getView(), aFieldNames, xIndexes, getConnection(), getORB(), isConnected() && getConnection()->getMetaData().is() ? getConnection()->getMetaData()->getMaxColumnsInIndex() : 0);
if (RET_OK != aDialog.Execute())
return;
......
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