Well I want to loop through Qt::Key_0 to Qt::Key_9
Like adding a bunch of numbers in buttons:
Any Ideas?Qt Code:
for(int i = 0; i < 10; i++){ Nums[i]->setShortcut(0x30); // but i can't loop with hexes since there is no eval in C++ Nums[i]->setFixedWidth(25); }To copy to clipboard, switch view to plain text mode
Bookmarks