aboutsummaryrefslogtreecommitdiffstats
path: root/src/request.cpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-08 00:23:01 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-06-08 00:38:15 +0900
commit9cfdd8937209e3e47b551e7a188add100cbae2e7 (patch)
tree037f80b8785cb9a62bf6e55e62ffe21c391b2285 /src/request.cpp
parent46d1ad85e8a4531dcb7dc9599f6c09554e2cdfbb (diff)
Change names. Not use sequence number but request number
* AppList API * Member variable(Not use sequence) Change-Id: Ie0d3d0394c5e050e894b11a91aab97f5bac73f00 Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/request.cpp')
-rw-r--r--src/request.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/request.cpp b/src/request.cpp
index 97b9f49..069f8ff 100644
--- a/src/request.cpp
+++ b/src/request.cpp
@@ -24,7 +24,7 @@ using std::string;
WMRequest::WMRequest() {}
WMRequest::WMRequest(string appid, string role, string area, Task task)
- : seq_num(0),
+ : req_num(0),
trigger{appid, role, area, task},
sync_draw_req(0)
{
@@ -36,7 +36,7 @@ WMRequest::~WMRequest()
WMRequest::WMRequest(const WMRequest &obj)
{
- this->seq_num = obj.seq_num;
+ this->req_num = obj.req_num;
this->trigger = obj.trigger;
this->sync_draw_req = obj.sync_draw_req;
}