Hello.
I want to create multi-dimensional array of objects, but I have problem with it.
For example:
Qt Code:
  1. QTableWidgetItem *item = new QTableWidgetItem[10][10];
To copy to clipboard, switch view to plain text mode 
call me:
Qt Code:
  1. (...)mainwindow.cpp:54: error: cannot convert ‘QTableWidgetItem (*)[10]’ to ‘QTableWidgetItem*’ in initialization
To copy to clipboard, switch view to plain text mode 

What else do it to resolve error?