summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSangtai Kim <sangtai.kim@samsung.com>2012-02-22 19:20:25 +0900
committerSangtai Kim <sangtai.kim@samsung.com>2012-02-22 19:20:25 +0900
commite363a52422fc10f881fb976084f6dc04fff82512 (patch)
tree581bd585a847b073210b7c57ff16cc3dfa6ffda7
parent2c7c996e9192ab56f92bc0177c0b84f6043313ed (diff)
downloadwrt-plugins-tizen-e363a52422fc10f881fb976084f6dc04fff82512.tar.gz
wrt-plugins-tizen-e363a52422fc10f881fb976084f6dc04fff82512.tar.bz2
wrt-plugins-tizen-e363a52422fc10f881fb976084f6dc04fff82512.zip
merge wrt-plugins-tizen_0.2.0-11
-rw-r--r--debian/changelog9
-rw-r--r--src/platform/Tizen/Systeminfo/Systeminfo.cpp2
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index aa695bf..1786f60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+wrt-plugins-tizen (0.2.0-11) unstable; urgency=low
+
+ * Systeminfo bug fix
+ * Git : slp/pkgs/w/wrt-plugins-tizen
+ * Tag : wrt-plugins-tizen_0.2.0-11
+
+
+ -- Sangtai Kim <sangtai.kim@samsung.com> Wed, 22 Feb 2012 19:16:34 +0900
+
wrt-plugins-tizen (0.2.0-10) unstable; urgency=low
* Callhistory bug fix
diff --git a/src/platform/Tizen/Systeminfo/Systeminfo.cpp b/src/platform/Tizen/Systeminfo/Systeminfo.cpp
index f228e11..5dfdeae 100644
--- a/src/platform/Tizen/Systeminfo/Systeminfo.cpp
+++ b/src/platform/Tizen/Systeminfo/Systeminfo.cpp
@@ -657,7 +657,7 @@ PROPERTY_GET_SYSTEMINFO_DEFINITION(Device) {
if (result.length() > MODEL_VERSION_LENGTH) {
result = result.substr(0, MODEL_VERSION_LENGTH);
}
- device.model = "GT-" + result;
+ device.model = result;
break;
}
}