summaryrefslogtreecommitdiff
path: root/plugins/weatherng/patches
diff options
context:
space:
mode:
authorroot <root@elwms02.(none)>2010-04-06 16:13:08 +0200
committerroot <root@elwms02.(none)>2010-04-06 16:13:08 +0200
commit0e7005fcc7483c01aa102fbea358c5ac65a48d62 (patch)
tree11517ce0d3d2977c6732b3aa583b0008083e0bd3 /plugins/weatherng/patches
downloadx-vdr-0e7005fcc7483c01aa102fbea358c5ac65a48d62.tar.gz
x-vdr-0e7005fcc7483c01aa102fbea358c5ac65a48d62.tar.bz2
hello world
Diffstat (limited to 'plugins/weatherng/patches')
-rw-r--r--plugins/weatherng/patches/weatherng-0.0.10-gcc43.diff36
1 files changed, 36 insertions, 0 deletions
diff --git a/plugins/weatherng/patches/weatherng-0.0.10-gcc43.diff b/plugins/weatherng/patches/weatherng-0.0.10-gcc43.diff
new file mode 100644
index 0000000..043c1ec
--- /dev/null
+++ b/plugins/weatherng/patches/weatherng-0.0.10-gcc43.diff
@@ -0,0 +1,36 @@
+--- imagecache.h.orig 2008-12-20 18:02:29.000000000 +0100
++++ imagecache.h 2008-12-20 18:07:46.000000000 +0100
+@@ -19,21 +19,21 @@
+
+ item_map mItems;
+ usage_list mUsage;
+- uint mMaxItems;
++ unsigned int mMaxItems;
+
+ protected:
+ virtual void DeleteObject(const key_type &Key, data_type &Data) = 0;
+ virtual void ResetObject(data_type &Data) = 0;
+
+ public:
+- cxCache(uint MaxItems);
++ cxCache(unsigned int MaxItems);
+ virtual ~cxCache();
+
+ void Reset(void);
+ void Flush(void);
+ bool Contains(const key_type &Key);
+ data_type &operator[](const key_type &Key);
+- uint Count(void) { return mUsage.size(); }
++ unsigned int Count(void) { return mUsage.size(); }
+ };
+
+ template<class key_type, class data_type>
+@@ -43,7 +43,7 @@
+ }
+
+ template<class key_type, class data_type>
+-cxCache<key_type, data_type>::cxCache(uint MaxItems)
++cxCache<key_type, data_type>::cxCache(unsigned int MaxItems)
+ {
+ mMaxItems = MaxItems;
+ }