Click here to Skip to main content
15,894,405 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCreating an update function for my game Pin
Calin Negru25-Jan-24 22:13
Calin Negru25-Jan-24 22:13 
AnswerRe: Creating an update function for my game Pin
Richard MacCutchan25-Jan-24 22:21
mveRichard MacCutchan25-Jan-24 22:21 
GeneralRe: Creating an update function for my game Pin
Calin Negru26-Jan-24 0:41
Calin Negru26-Jan-24 0:41 
GeneralRe: Creating an update function for my game Pin
Richard MacCutchan26-Jan-24 0:52
mveRichard MacCutchan26-Jan-24 0:52 
GeneralRe: Creating an update function for my game Pin
CPallini26-Jan-24 1:25
mveCPallini26-Jan-24 1:25 
GeneralRe: Creating an update function for my game Pin
Richard MacCutchan26-Jan-24 1:30
mveRichard MacCutchan26-Jan-24 1:30 
QuestionRe: Creating an update function for my game Pin
CPallini26-Jan-24 0:39
mveCPallini26-Jan-24 0:39 
QuestionHelp me to decipher the error messages Pin
Salvatore Terress20-Jan-24 2:46
Salvatore Terress20-Jan-24 2:46 
AnswerRe: Help me to decipher the error messages Pin
Richard MacCutchan20-Jan-24 3:18
mveRichard MacCutchan20-Jan-24 3:18 
AnswerRe: Help me to decipher the error messages Pin
Dave Kreskowiak20-Jan-24 4:56
mveDave Kreskowiak20-Jan-24 4:56 
AnswerRe: Help me to decipher the error messages Pin
Gerry Schmitz20-Jan-24 6:34
mveGerry Schmitz20-Jan-24 6:34 
AnswerRe: Help me to decipher the error messages Pin
Richard Andrew x6421-Jan-24 11:33
professionalRichard Andrew x6421-Jan-24 11:33 
AnswerRe: Help me to decipher the error messages Pin
CPallini21-Jan-24 20:33
mveCPallini21-Jan-24 20:33 
AnswerRe: Help me to decipher the error messages Pin
jschell22-Jan-24 5:24
jschell22-Jan-24 5:24 
GeneralRe: Help me to decipher the error messages Pin
Richard MacCutchan22-Jan-24 6:22
mveRichard MacCutchan22-Jan-24 6:22 
GeneralRe: Help me to decipher the error messages Pin
Gerry Schmitz26-Jan-24 6:13
mveGerry Schmitz26-Jan-24 6:13 
QuestionLoop thru two dimensional array - edited Pin
Salvatore Terress15-Jan-24 7:41
Salvatore Terress15-Jan-24 7:41 
AnswerRe: Loop thru two dimensional array Pin
jeron115-Jan-24 9:31
jeron115-Jan-24 9:31 
GeneralRe: Loop thru two dimensional array Pin
Salvatore Terress15-Jan-24 9:50
Salvatore Terress15-Jan-24 9:50 
AnswerRe: Loop thru two dimensional array Pin
k505415-Jan-24 10:45
mvek505415-Jan-24 10:45 
GeneralRe: Loop thru two dimensional array Pin
Salvatore Terress15-Jan-24 12:28
Salvatore Terress15-Jan-24 12:28 
AnswerSOLVED Re: Loop thru two dimensional array - edited Pin
Salvatore Terress15-Jan-24 12:49
Salvatore Terress15-Jan-24 12:49 
SOLVED
Wrong logic in embedded loop - this is size of CURRENT / dynamic MAIN loop member.

Thanks very much for all the help.
Sal


C++
for (index_array = 0; index_array <  list_array[index_array].size()+1; ++index_array  )
{
    text = " index array ";
    text += QString::number(index_array);
    text += "  Array size ";
    text += QString::number(list_array[index_array].size() );
    qDebug() << text;

for (index_main = 0; index_main < list_array[index_array].size(); ++index_main)
{
    text = " main menus  ";
    text += QString::number(index_main);
    text += " ";
    text += list_array[index_array][index_main];
    text += "main menu size ";
    text += QString::number(list_array[index_array][index_main].size());
    qDebug() << text;
}
}

return 0;

{// menus processing





Found the cause of the weird count

The code counts # of characters in the member of the child array....


" index array 0 Array size 7"
" main menus 0 SubWindow terminal added space here (QMdiArea )main menu size 57"
" main menus 1 SubWindow hcitool (QMdiArea )main menu size 34"
" main menus 2 SubWindow bluetoothctl (QMdiArea )main menu size 34"
" main menus 3 SubWindow terminal (QMdiArea )main menu size 34"
" main menus 4 SubWindow hcitool (QMdiArea )main menu size 34"
" main menus 5 SubWindow bluetoothctl (QMdiArea )main menu size 34"
" main menus 6 SubWindow system (QMdiArea )main menu size 34"
ASSERT failure in QList<t>::operator[]: "index out of range", file /home/nov25-1/Qt/5.15.2/gcc_64/include/QtCore/qlist.h, line 575

modified 15-Jan-24 19:10pm.

QuestionRe: SOLVED Re: Loop thru two dimensional array - edited Pin
jeron116-Jan-24 6:39
jeron116-Jan-24 6:39 
AnswerRe: SOLVED Re: Loop thru two dimensional array - edited Pin
Salvatore Terress16-Jan-24 7:20
Salvatore Terress16-Jan-24 7:20 
QuestionAdding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
Salvatore Terress13-Jan-24 16:29
Salvatore Terress13-Jan-24 16:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.