]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/bool.cpp
Build fixes for Qt5 Windows/mingw/MXE support.
[pulseview.git] / pv / prop / bool.cpp
index e3e0ebd50e86151408b14fe7420167a2e2db054a..61b2f17adaa9848cc28d6735a49cbff3d024001a 100644 (file)
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <assert.h>
@@ -29,11 +28,7 @@ namespace prop {
 
 Bool::Bool(QString name, Getter getter, Setter setter) :
        Property(name, getter, setter),
-       check_box_(NULL)
-{
-}
-
-Bool::~Bool()
+       check_box_(nullptr)
 {
 }
 
@@ -43,11 +38,11 @@ QWidget* Bool::get_widget(QWidget *parent, bool auto_commit)
                return check_box_;
 
        if (!getter_)
-               return NULL;
+               return nullptr;
 
        Glib::VariantBase variant = getter_();
        if (!variant.gobj())
-               return NULL;
+               return nullptr;
 
        bool value = Glib::VariantBase::cast_dynamic<Glib::Variant<bool>>(
                variant).get();