summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/ImageBox.cpp
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2012-07-16 17:51:12 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2012-07-16 17:51:12 +0000
commitd247e6df50e9377cc5ecd0f4c29cc40de4165d1a (patch)
tree460f29768ba7ff213ead361f1165f2028fcf56d8 /nGenEx/ImageBox.cpp
parent48cce8ead9fdd6be5f1c4593235c56adb9156bea (diff)
downloadstarshatter-d247e6df50e9377cc5ecd0f4c29cc40de4165d1a.zip
starshatter-d247e6df50e9377cc5ecd0f4c29cc40de4165d1a.tar.gz
starshatter-d247e6df50e9377cc5ecd0f4c29cc40de4165d1a.tar.bz2
Ignore PVS Studio warning V576
Diffstat (limited to 'nGenEx/ImageBox.cpp')
-rw-r--r--nGenEx/ImageBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nGenEx/ImageBox.cpp b/nGenEx/ImageBox.cpp
index cf3ba39..bfef55c 100644
--- a/nGenEx/ImageBox.cpp
+++ b/nGenEx/ImageBox.cpp
@@ -28,7 +28,7 @@ ImageBox::ImageBox(ActiveWindow* p, int ax, int ay, int aw, int ah, DWORD aid)
text_align = DT_CENTER;
char buf[32];
- sprintf_s(buf, "ImageBox %d", id);
+ sprintf_s(buf, "ImageBox %d", id); //-V576
desc = buf;
}
@@ -39,7 +39,7 @@ ImageBox::ImageBox(Screen* s, int ax, int ay, int aw, int ah, DWORD aid)
text_align = DT_CENTER;
char buf[32];
- sprintf_s(buf, "ImageBox %d", id);
+ sprintf_s(buf, "ImageBox %d", id); //-V576
desc = buf;
}