mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
fix documentation warnings
This commit is contained in:
parent
c2f7aa3766
commit
9650602eef
5 changed files with 67 additions and 67 deletions
|
@ -130,8 +130,8 @@ namespace rubyopencv {
|
|||
* Set width
|
||||
*
|
||||
* @overload width=(value)
|
||||
* @param value [Integer] Width
|
||||
* @return [Rect] +self+
|
||||
* @param value [Integer] Width
|
||||
* @return [Rect] +self+
|
||||
*/
|
||||
VALUE rb_set_width(VALUE self, VALUE width) {
|
||||
obj2rect(self)->width = NUM2INT(width);
|
||||
|
@ -152,8 +152,8 @@ namespace rubyopencv {
|
|||
* Set height
|
||||
*
|
||||
* @overload height=(value)
|
||||
* @param value [Integer] Height
|
||||
* @return [Rect] +self+
|
||||
* @param value [Integer] Height
|
||||
* @return [Rect] +self+
|
||||
*/
|
||||
VALUE rb_set_height(VALUE self, VALUE height) {
|
||||
obj2rect(self)->height = NUM2INT(height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue