summaryrefslogtreecommitdiff
path: root/include/sfx2/itemconnect.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sfx2/itemconnect.hxx')
-rw-r--r--include/sfx2/itemconnect.hxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/sfx2/itemconnect.hxx b/include/sfx2/itemconnect.hxx
index a414b461415c..95cc97f9f229 100644
--- a/include/sfx2/itemconnect.hxx
+++ b/include/sfx2/itemconnect.hxx
@@ -213,7 +213,6 @@ private:
};
-
/** Base class template for single item <-> single control connection objects.
This template uses functions provided by the SingleItemWrapper and the
@@ -290,12 +289,10 @@ private:
};
-
/** Connection between an SfxBoolItem and a VCL CheckBox. */
typedef ItemControlConnection< BoolItemWrapper, CheckBoxWrapper > CheckBoxConnection;
-
/** Connection between an item and the VCL NumericField. */
template< typename ItemWrpT >
class NumericConnection : public ItemControlConnection< ItemWrpT,
@@ -313,10 +310,6 @@ public:
};
-
-
-
-
/** Connection between an item and the VCL MetricField.
Adds support of different field units during control value <-> item value
@@ -340,7 +333,6 @@ public:
};
-
/** Connection between an item and a VCL ListBox.
Optionally a map can be passed that maps list box positions to item values.
@@ -366,10 +358,6 @@ public:
};
-
-
-
-
/** Connection between an item and an SVTOOLS ValueSet.
Optionally a map can be passed that maps value set identifiers to item
@@ -395,9 +383,6 @@ public:
};
-
-
-
// Array of connections
@@ -430,12 +415,9 @@ private:
};
-
-
// *** Implementation of template functions ***
-
// Base connection classes
@@ -519,7 +501,6 @@ NumericConnection< ItemWrpT >::NumericConnection(
}
-
template< typename ItemWrpT >
MetricConnection< ItemWrpT >::MetricConnection(
sal_uInt16 nSlot, MetricField& rField, FieldUnit eItemUnit, ItemConnFlags nFlags ) :
@@ -528,7 +509,6 @@ MetricConnection< ItemWrpT >::MetricConnection(
}
-
template< typename ItemWrpT >
ListBoxConnection< ItemWrpT >::ListBoxConnection(
sal_uInt16 nSlot, ListBox& rListBox, const MapEntryType* pMap, ItemConnFlags nFlags ) :
@@ -537,7 +517,6 @@ ListBoxConnection< ItemWrpT >::ListBoxConnection(
}
-
template< typename ItemWrpT >
ValueSetConnection< ItemWrpT >::ValueSetConnection(
sal_uInt16 nSlot, ValueSet& rValueSet, const MapEntryType* pMap, ItemConnFlags nFlags ) :
@@ -546,7 +525,6 @@ ValueSetConnection< ItemWrpT >::ValueSetConnection(
}
-
} // namespace sfx
#endif