From 51fe4d63dfdf0ea24d2fecf75d25cbe607ed1c09 Mon Sep 17 00:00:00 2001 From: melikeyurtoglu Date: Tue, 3 May 2016 00:34:05 +0300 Subject: tdf#97527 vcl: reference-count Menu Change-Id: Ia12434fede69ad247ed67691517437a9ada31acd Signed-off-by: melikeyurtoglu Reviewed-on: https://gerrit.libreoffice.org/24596 Tested-by: Jenkins Reviewed-by: Michael Meeks Tested-by: Michael Meeks --- vcl/source/outdev/outdev.cxx | 1 - vcl/source/outdev/vclreferencebase.cxx | 48 ++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 vcl/source/outdev/vclreferencebase.cxx (limited to 'vcl/source/outdev') diff --git a/vcl/source/outdev/outdev.cxx b/vcl/source/outdev/outdev.cxx index fd875f526c8b..6c9991bba824 100644 --- a/vcl/source/outdev/outdev.cxx +++ b/vcl/source/outdev/outdev.cxx @@ -42,7 +42,6 @@ namespace { // Begin initializer and accessor public functions OutputDevice::OutputDevice() : - mnRefCnt(1), // cf. VclPtrInstance and README.lifecycle maRegion(true), maFillColor( COL_WHITE ), maTextLineColor( COL_TRANSPARENT ), diff --git a/vcl/source/outdev/vclreferencebase.cxx b/vcl/source/outdev/vclreferencebase.cxx new file mode 100644 index 000000000000..0125e554fae1 --- /dev/null +++ b/vcl/source/outdev/vclreferencebase.cxx @@ -0,0 +1,48 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . + */ + +#include +#include "svdata.hxx" +#include "window.h" +#include "outdev.h" +#include "outdevstatestack.hxx" + +VclReferenceBase::VclReferenceBase() : + mnRefCnt(1), // cf. VclPtrInstance and README.lifecycle + mbDisposed(false) +{ +} + +VclReferenceBase::~VclReferenceBase() +{ + disposeOnce(); +} + +void VclReferenceBase::disposeOnce() +{ + if ( mbDisposed ) + return; + mbDisposed = true; + dispose(); +} + +void VclReferenceBase::dispose() +{ +} + -- cgit