Displaying 2 results from an estimated 2 matches for "rsecond".
Did you mean:
  second
  
2007 Apr 13
0
[961] branches/wxruby2/wxwidgets_282/swig: Move wxDateTime typemap into shared file, map to core Time class instead
...NT(rb_funcall($input, rb_intern("month"), 0));
+    int rDay = NUM2INT(rb_funcall($input, rb_intern("mday"), 0));
+    int rHour = NUM2INT(rb_funcall($input, rb_intern("hour"), 0));
+    int rMinute = NUM2INT(rb_funcall($input, rb_intern("min"), 0));
+    int rSecond = NUM2INT(rb_funcall($input, rb_intern("sec"), 0));
+    wxDateTime::Month mon = (wxDateTime::Month)(rMonth-1);
+    wxDateTime::wxDateTime_t d = (wxDateTime::wxDateTime_t)rDay;
+    wxDateTime::wxDateTime_t h = (wxDateTime::wxDateTime_t)rHour;
+    wxDateTime::wxDateTime_t min = (wxDateT...
2006 Apr 25
2
Re: [nut-commits] svn commit r414 - in trunk: . drivers
.../drivers/cpsups.c
> ==============================================================================
> --- trunk/drivers/cpsups.c	(original)
> +++ trunk/drivers/cpsups.c	Mon Apr 24 20:45:39 2006
> @@ -147,6 +147,7 @@
>  	char values[20][200], *pos;
>  	int i = 0, battremain, length, rseconds;
>  	double rminutes;
> +	char temp1, *tmp1;
>
>  	while ((pollstatusmap[i].end != 0))
>  	{
> @@ -159,8 +160,8 @@
>  /*	These are used to hold status of UPS.
>   *	val1 = online/onbattery status
>   */
> -	char temp1=values[6][0];
> -	char *tmp1=&temp1;
> +...