summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/src/cnxwidget.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'NxWidgets/libnxwidgets/src/cnxwidget.cxx')
-rw-r--r--NxWidgets/libnxwidgets/src/cnxwidget.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/NxWidgets/libnxwidgets/src/cnxwidget.cxx b/NxWidgets/libnxwidgets/src/cnxwidget.cxx
index 8b5d0cb57..483309832 100644
--- a/NxWidgets/libnxwidgets/src/cnxwidget.cxx
+++ b/NxWidgets/libnxwidgets/src/cnxwidget.cxx
@@ -189,10 +189,6 @@ CNxWidget::CNxWidget(CWidgetControl *pWidgetControl,
m_lastClickY = 0;
m_doubleClickBounds = DOUBLE_CLICK_BOUNDS;
- // Set other default values
-
- m_refcon = 0;
-
// Set border size to 1 line
m_borderSize.top = 1;
@@ -200,7 +196,6 @@ CNxWidget::CNxWidget(CWidgetControl *pWidgetControl,
m_borderSize.bottom = 1;
m_borderSize.left = 1;
- m_closeType = CLOSE_TYPE_CLOSE;
m_rectCache = new CRectCache(this);
m_widgetEventHandlers = new CWidgetEventHandlerList(this);
}
@@ -507,20 +502,6 @@ TNxArray<CRect> *CNxWidget::getForegroundRegions(void)
}
/**
- * Sets this widget's reference constant. This should be unique,
- * at least amongst this widget's siblings.
- *
- * @param refcon The reference constant.
- */
-
-uint32_t CNxWidget::setRefcon(uint32_t refcon)
-{
- uint32_t old = m_refcon;
- m_refcon = refcon;
- return old;
-}
-
-/**
* Sets this widget's border state.
*
* @param isBorderless The border state.