Import of pkgsrc-2015Q2

This commit is contained in:
2015-08-30 02:56:09 -07:00
committed by Lionel Sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions

View File

@@ -0,0 +1,63 @@
$NetBSD: patch-SrcShared_PreferenceMgr.cpp,v 1.1 2015/04/21 17:15:20 joerg Exp $
--- SrcShared/PreferenceMgr.cpp.orig 2002-03-29 13:11:17.000000000 +0000
+++ SrcShared/PreferenceMgr.cpp
@@ -232,58 +232,6 @@ void BasePreference::Save (void)
//
// ----------------------------------------------------------------------
-
-/***********************************************************************
- *
- * FUNCTION: Preference<T> constructor
- *
- * DESCRIPTION: Calls BasePreference to initialize the base members,
- * then calls Load() to load the data.
- *
- * PARAMETERS: name - name of the key used to fetch the data.
- *
- * RETURNED: Nothing.
- *
- ***********************************************************************/
-
-template <class T>
-Preference<T>::Preference (PrefKeyType name, bool acquireLock) :
- BasePreference (name, acquireLock),
- fValue (T())
-{
- this->Load ();
-}
-
-template <class T>
-Preference<T>::Preference (long index, bool acquireLock) :
- BasePreference (index, acquireLock),
- fValue (T())
-{
- this->Load ();
-}
-
-
-
-/***********************************************************************
- *
- * FUNCTION: Preference<T> destructor
- *
- * DESCRIPTION: Ensures that any changes are flushed back to the
- * preference collection before destructing the base class.
- *
- * PARAMETERS: None.
- *
- * RETURNED: Nothing.
- *
- ***********************************************************************/
-
-template <class T>
-Preference<T>::~Preference (void)
-{
- this->Save ();
-}
-
-
/***********************************************************************
*
* FUNCTION: Preference<T>::DoLoad