File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
engine/src/java/com/runrev/android Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,14 +171,14 @@ public void onDismiss(DialogInterface p_dialog)
171171 if (p_with_min )
172172 {
173173 Method t_setMinDate ;
174- t_setMinDate = t_dialog .getClass ().getMethod ("setMinDate" , new Class [] {Long .TYPE });
174+ t_setMinDate = t_date_picker .getClass ().getMethod ("setMinDate" , new Class [] {Long .TYPE });
175175 t_setMinDate .invoke (t_date_picker , new Object [] {p_min * 1000 });
176176 }
177177
178178 if (p_with_max )
179179 {
180180 Method t_setMaxDate ;
181- t_setMaxDate = t_dialog .getClass ().getMethod ("setMaxDate" , new Class [] {Long .TYPE });
181+ t_setMaxDate = t_date_picker .getClass ().getMethod ("setMaxDate" , new Class [] {Long .TYPE });
182182 t_setMaxDate .invoke (t_date_picker , new Object [] {p_max * 1000 });
183183 }
184184 }
You can’t perform that action at this time.
0 commit comments