pango is ready

This commit is contained in:
Ertuğrul Erata
2015-07-04 15:43:20 +03:00
parent 6da3190be0
commit bfee09872f
24 changed files with 627 additions and 0 deletions
@@ -0,0 +1,10 @@
--- include/RangeMap.h~ 2004-04-22 20:34:13.729541096 +0300
+++ include/RangeMap.h 2004-04-22 20:31:48.473049702 +0300
@@ -8,6 +8,7 @@
#include "Boolean.h"
#include "ISet.h"
#include "types.h"
+#include "constant.h"
#include <stddef.h>
#ifdef SP_NAMESPACE
@@ -0,0 +1,20 @@
--- OpenSP-1.5.2/lib/ExtendEntityManager.cxx 2005-11-05 10:05:20.000000000 +0100
+++ OpenSP-1.5.2.new/lib/ExtendEntityManager.cxx 2007-06-21 12:56:26.000000000 +0200
@@ -1238,7 +1238,8 @@ StorageObjectSpec::StorageObjectSpec()
}
StorageObjectSpec::StorageObjectSpec(const StorageObjectSpec& x)
-: codingSystemName(x.codingSystemName),
+: storageManager(x.storageManager),
+ codingSystemName(x.codingSystemName),
codingSystem(x.codingSystem),
specId(x.specId),
baseId(x.baseId),
@@ -1253,6 +1254,7 @@ StorageObjectSpec::StorageObjectSpec(con
StorageObjectSpec& StorageObjectSpec::operator=(const StorageObjectSpec& x)
{
if (this != &x) {
+ storageManager = x.storageManager;
codingSystemName = x.codingSystemName;
codingSystem = x.codingSystem;
specId = x.specId;