summaryrefslogtreecommitdiff
path: root/forms/source/xforms
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms')
-rw-r--r--forms/source/xforms/mip.cxx6
-rw-r--r--forms/source/xforms/mip.hxx1
2 files changed, 0 insertions, 7 deletions
diff --git a/forms/source/xforms/mip.cxx b/forms/source/xforms/mip.cxx
index ddeb96864890..0edf32e53a09 100644
--- a/forms/source/xforms/mip.cxx
+++ b/forms/source/xforms/mip.cxx
@@ -20,11 +20,9 @@
#include "mip.hxx"
-
namespace xforms
{
-
MIP::MIP()
{
resetReadonly();
@@ -35,8 +33,6 @@ MIP::MIP()
resetTypeName();
}
-MIP::~MIP() {}
-
void MIP::inherit( const MIP& rMip )
{
if( ! mbHasReadonly )
@@ -92,14 +88,12 @@ void MIP::resetConstraint() { mbHasConstraint = false; mbConstraint = true
void MIP::setConstraintExplanation( const OUString& s ) { msConstraintExplanation = s; }
-
void MIP::setHasCalculate( bool b ) { mbHasCalculate = b; }
void MIP::resetCalculate() { mbHasCalculate = false; }
void MIP::setTypeName( const OUString& s ) { msTypeName = s; mbHasTypeName = true; }
void MIP::resetTypeName() { msTypeName.clear(); mbHasTypeName = false; }
-
} // namespace xforms
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/forms/source/xforms/mip.hxx b/forms/source/xforms/mip.hxx
index 5db986d9cf55..4996fe162d58 100644
--- a/forms/source/xforms/mip.hxx
+++ b/forms/source/xforms/mip.hxx
@@ -52,7 +52,6 @@ class MIP
public:
MIP();
- ~MIP();
/// inherit from upper-level MIPs
void inherit( const MIP& );