VirtualBox

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


Ignore:
Timestamp:
Feb 10, 2021 11:45:30 AM (4 years ago)
Author:
vboxsync
Message:

VBoxDbg: bugref:9532: Qt 5.15.2 migration: Replacing QComboBox::setAutoCompletion with QComboBox::setCompleter since former is obsolete.

Location:
trunk/src/VBox/Debugger
Files:
2 edited

Legend:

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

    r86327 r87675  
    390390    setEditable(true);
    391391    setInsertPolicy(NoInsert);
    392     setAutoCompletion(false);
     392    setCompleter(nullptr);
    393393    setMaxCount(50);
    394394    const QLineEdit *pEdit = lineEdit();
  • trunk/src/VBox/Debugger/VBoxDbgStatsQt.cpp

    r83811 r87675  
    30573057
    30583058    m_pPatCB = new QComboBox();
    3059     m_pPatCB->setAutoCompletion(false);
     3059    m_pPatCB->setCompleter(nullptr);
    30603060    pHLayout->addWidget(m_pPatCB);
    30613061    if (!m_PatStr.isEmpty())
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