VirtualBox

Changeset 101099 in vbox for trunk/src/VBox/Debugger


Ignore:
Timestamp:
Sep 12, 2023 11:43:58 PM (18 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
159068
Message:

VBoxDbg: Made the statistics selection pattern work again (hooked up to signal removed in Qt 6) and moved the unsetting of the completer as either setDuplicatesEnabled or setEditable seems to implicitly set a case-insensitive completer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp

    r101098 r101099  
    31863186
    31873187    m_pPatCB = new QComboBox();
    3188     m_pPatCB->setCompleter(0);
    31893188    pHLayout->addWidget(m_pPatCB);
    31903189    if (!m_PatStr.isEmpty())
     
    31923191    m_pPatCB->setDuplicatesEnabled(false);
    31933192    m_pPatCB->setEditable(true);
    3194     connect(m_pPatCB, SIGNAL(activated(const QString &)), this, SLOT(apply(const QString &)));
     3193    m_pPatCB->setCompleter(0);
     3194    connect(m_pPatCB, SIGNAL(textActivated(const QString &)), this, SLOT(apply(const QString &)));
    31953195
    31963196    QPushButton *pPB = new QPushButton("&All");
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette