Menu

What is going on with the topics under moderation

2021-10-18
2021-10-19
  • Steve Albright

    Steve Albright - 2021-10-18

    I posted a false positive a couple weeks ago and it never showed up and I didn't know why so I reposted it and it was also sent to moderation.

    #include <QHBoxLayout>
    #include <QLabel>
    #include <QList>
    #include <QWidget>
    
    QList<QLabel*> containerOutOfBoundsFalsePositiveExample(QWidget* parent)
    {
       QList<QLabel*> labelList;
       QHBoxLayout* horizontalLayout = new QHBoxLayout(parent);
    
       for(int i = 0; i < 4; ++i)
       {
          labelList.append(new QLabel(parent));
          horizontalLayout->insertWidget(i, labelList.at(i), Qt::AlignCenter);
       }
    
       return labelList;
    }
    

    Container Out of Bounds but the array size is growing.

     
  • Daniel Marjamäki

    What is going on with the topics under moderation

    oops I don't know. It says Moderate (0) for me.. then I would think there is nothing to moderate.

     
    • Steve Albright

      Steve Albright - 2021-10-19

      My moderated topics got brought in yesterday after I posted this, thanks.

       

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.