svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=511768
#include <kiconloader.h>
#include <ktoolbar.h>
#include <kdebug.h>
-#include <knotifyclient.h>
+#include <knotification.h>
#include "extdatepicker.h"
#include "extdatetbl.h"
// ----- set this month
setDate(date);
} else {
- KNotifyClient::beep();
+ KNotification::beep();
}
delete popup;
}
emit(dateEntered(temp));
setDate(temp);
} else {
- KNotifyClient::beep();
+ KNotification::beep();
kDebug(298) << "ExtDatePicker::lineEnterPressed: invalid date entered." << endl;
}
}
#include <kapplication.h>
#include <kdebug.h>
-#include <knotifyclient.h>
+#include <knotification.h>
#include "k3popupmenu.h"
#include <QPainter>
#include <Q3Dict>
break;
}
- KNotifyClient::beep();
+ KNotification::beep();
}
void
}
if(!isEnabled())
{
- KNotifyClient::beep();
+ KNotification::beep();
return;
}
week=text().toInt(&ok);
if(!ok)
{
- KNotifyClient::beep();
+ KNotification::beep();
return;
}
result=week;
{
if(!isEnabled() || e->button() != Qt::LeftButton)
{
- KNotifyClient::beep();
+ KNotification::beep();
return;
}
// -----
year=text().toInt(&ok);
if(!ok)
{
- KNotifyClient::beep();
+ KNotification::beep();
return;
}
//date.setYMD(year, 1, 1);
d->calendar->setYMD(date, year, 1, 1);
if(!date.isValid())
{
- KNotifyClient::beep();
+ KNotification::beep();
return;
}
result=year;