VirtualBox

Changeset 92743 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Dec 3, 2021 6:20:38 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
148650
Message:

FE/Qt: bugref:8161. Don't wait until destruction to release CMachine reference in log viewer dialog.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/logviewer
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerDialog.cpp

    r89585 r92743  
    7171UIVMLogViewerDialog::~UIVMLogViewerDialog()
    7272{
    73     UIVMLogViewerWidget *pWidget = qobject_cast<UIVMLogViewerWidget*>(widget());
    74     if (pWidget)
    75         pWidget->setDialogBeingClosed(true);
    7673}
    7774
     
    150147    /* Create widget: */
    151148    UIVMLogViewerWidget *pWidget = new UIVMLogViewerWidget(EmbedTo_Dialog, m_pActionPool, true /* show toolbar */, m_comMachine, this);
     149    /* Release the CMachine reference as we don't need it anymore. Doing it during dtor causes problems since xcom might be gone already: */
     150    m_comMachine.detach();
    152151    if (pWidget)
    153152    {
  • TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.cpp

    r89623 r92743  
    210210    , m_pCornerButton(0)
    211211    , m_pMachineSelectionMenu(0)
    212     , m_fDialogBeingClosed(false)
     212    , m_fCommitDataSignalReceived(false)
    213213{
    214214    /* Prepare VM Log-Viewer: */
     
    217217    if (!comMachine.isNull())
    218218        setMachines(QVector<QUuid>(1, comMachine.GetId()));
     219    connect(&uiCommon(), &UICommon::sigAskToCommitData,
     220            this, &UIVMLogViewerWidget::sltCommitDataSignalReceived);
    219221}
    220222
     
    363365}
    364366
    365 void UIVMLogViewerWidget::setDialogBeingClosed(bool fFlag)
    366 {
    367     m_fDialogBeingClosed = fFlag;
    368 }
    369 
    370367bool UIVMLogViewerWidget::shouldBeMaximized() const
    371368{
     
    375372void UIVMLogViewerWidget::saveOptions()
    376373{
    377     gEDataManager->setLogViweverOptions(m_font, m_bWrapLines, m_bShowLineNumbers);
     374    if (!m_fCommitDataSignalReceived)
     375        gEDataManager->setLogViweverOptions(m_font, m_bWrapLines, m_bShowLineNumbers);
    378376}
    379377
    380378void UIVMLogViewerWidget::savePanelVisibility()
    381379{
    382     if (m_fDialogBeingClosed)
     380    if (m_fCommitDataSignalReceived)
    383381        return;
    384382    /* Save a list of currently visible panels: */
     
    679677    list << pButton->machineId();
    680678    removeLogViewerPages(list);
     679}
     680
     681void UIVMLogViewerWidget::sltCommitDataSignalReceived()
     682{
     683    m_fCommitDataSignalReceived = true;
    681684}
    682685
  • TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerWidget.h

    r89607 r92743  
    9292    QFont currentFont() const;
    9393
    94     /** Sets m_fDialogBeingClosed. */
    95     void setDialogBeingClosed(bool fFlag);
    96 
    9794protected:
    9895
     
    144141    void sltCloseMachineLogs();
    145142    void sltTabCloseButtonClick();
     143    void sltCommitDataSignalReceived();
    146144
    147145private:
     
    252250    QIToolButton *m_pCornerButton;
    253251    UIMachineListMenu *m_pMachineSelectionMenu;
    254     /** This is set to true by the parent dialog. This is necessary not to save
    255       * visible panel list during destruction since they are hidden automatically during that. */
    256     bool m_fDialogBeingClosed;
     252    /** All extra data saves are done dynamically (as an option changes etc.). The this flag is true
     253      * we should not try to save anything to extra data anymore. */
     254    bool m_fCommitDataSignalReceived;
     255
    257256    friend class UIVMLogViewerFilterPanel;
    258257    friend class UIVMLogViewerPanel;
Note: See TracChangeset for help on using the changeset viewer.

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