Maybe I need to say sorry. What ever.sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade reboot sudo apt-get install xfce4 reboot
ip route ls
| The Following User Says Thank You to levone1 For This Useful Post: | ||
= qMin(qMin(s.width() / 2, s.height() / 2), f)
graphicswidget/rect.cpp: In member function 'vir
tual void karin::rect::setRadius(float)':
graphicswidget/rect.cpp:293:55: error: no matchi
ng function for call to 'qMin(const double&, flo
at&)'
= qMin(qMin(s.width() / 2, s.height() / 2), f);
^
| The Following User Says Thank You to levone1 For This Useful Post: | ||
qMin(qMin(s.width() / 2, s.height() / 2), f)
qMin(double, whatever_type_f_is)
qMin(qMin(s.width() / 2, s.height() / 2), double(f))
| The Following 3 Users Say Thank You to pichlo For This Useful Post: | ||
qMin(qMin(s.width() / 2, s.height() / 2), f)
qMin(double, whatever_type_f_is)
qMin(qMin(s.width() / 2, s.height() / 2), double(f))
| The Following User Says Thank You to levone1 For This Useful Post: | ||
void IpHeartBeatWatcher::run()
{
#ifdef SFOS
handle_ = iphb_open(NULL);
if (handle_ != NULL)
{
while ( doWatch_ )
{
time_t time = iphb_wait(handle_, 0, (2 * IPHB_GS_WAIT_10_MINS), 1);
printf("%ld seconds since the epoch began\n", (long)time);
printf("%s", asctime(gmtime(&time)));
emit triggered();
2 * IPHB_GS_WAIT_10_MINS
time_t seconds;
seconds = time(NULL);
printf("%ld seconds since the epoch began\n", (long)time);
| The Following User Says Thank You to levone1 For This Useful Post: | ||