~petr-kubanek/stellarium/stellarium

« back to all changes in this revision

Viewing changes to plugins/LogBook/src/gui/LogBookConfigDialog.cpp

  • Committer: Georg Zotti
  • Date: 2017-05-22 14:27:36 UTC
  • Revision ID: georg.zotti@univie.ac.at-20170522142736-sw2kjxe3ntlwba5u
Q_NULLPTR refactoring completed for all plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
LogBookConfigDialog::~LogBookConfigDialog()
66
66
{
67
67
        delete ui;
68
 
        ui = NULL;
 
68
        ui = Q_NULLPTR;
69
69
        delete barlowsWidget;
70
 
        barlowsWidget = NULL;
 
70
        barlowsWidget = Q_NULLPTR;
71
71
        delete filtersWidget;
72
 
        filtersWidget = NULL;
 
72
        filtersWidget = Q_NULLPTR;
73
73
        delete imagersWidget;
74
 
        imagersWidget = NULL;
 
74
        imagersWidget = Q_NULLPTR;
75
75
        delete observersWidget;
76
 
        observersWidget = NULL;
 
76
        observersWidget = Q_NULLPTR;
77
77
        delete ocularsWidget;
78
 
        ocularsWidget = NULL;
 
78
        ocularsWidget = Q_NULLPTR;
79
79
        delete opticsWidget;
80
 
        opticsWidget = NULL;
 
80
        opticsWidget = Q_NULLPTR;
81
81
        delete sitesWidget;
82
 
        sitesWidget = NULL;
 
82
        sitesWidget = Q_NULLPTR;
83
83
}
84
84
 
85
85
/* ********************************************************************* */