- use kcontrol/nics/nic.cpp from kde-current to access getifaddrs... IPv4 masks are not printed properly yet. - konsole fixes for utmp - ksysguardd mostly working. Should unify with Net/FreeBSD - clock and timezone fixes mostly from Flinn Mueller. - uses kxkb_pic lib, thanks to Matthieu.
18 lines
508 B
Plaintext
18 lines
508 B
Plaintext
$OpenBSD: patch-kcontrol_clock_main_cpp,v 1.1 2003/01/27 19:22:50 espie Exp $
|
|
--- kcontrol/clock/main.cpp.orig Sat Sep 21 18:54:57 2002
|
|
+++ kcontrol/clock/main.cpp Mon Jan 13 10:48:30 2003
|
|
@@ -65,8 +65,13 @@ KclockModule::KclockModule(QWidget *pare
|
|
void KclockModule::save()
|
|
{
|
|
// The order here is important
|
|
+#ifdef __OpenBSD__
|
|
+ tzone->save();
|
|
+ dtime->save();
|
|
+#else
|
|
dtime->save();
|
|
tzone->save();
|
|
+#endif
|
|
|
|
// it syncs up nicely without restarting
|
|
// // restart kicker to sync up the time
|