Author: iratqq
Date: Mon Dec 24 17:58:30 2007
New Revision: 5063
Modified:
trunk/configure.ac
trunk/notify/uim-knotify.cc
Log:
* uim-knotify.cc(uim_notify_init): add missing variables.
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Mon Dec 24 17:58:30 2007
@@ -2,7 +2,7 @@
AC_INIT([uim], [1.5.0], [EMAIL PROTECTED])
AC_CONFIG_SRCDIR([uim/uim.c])
AC_CONFIG_HEADERS([uim/config.h])
-AM_INIT_AUTOMAKE([1.10 dist-bzip2])
+AM_INIT_AUTOMAKE([1.9 dist-bzip2])
# Enable GNU extensions such as asprintf(3), BSD-originated functions,
# POSIX features and more on glibc (and some other
Modified: trunk/notify/uim-knotify.cc
==============================================================================
--- trunk/notify/uim-knotify.cc (original)
+++ trunk/notify/uim-knotify.cc Mon Dec 24 17:58:30 2007
@@ -50,6 +50,9 @@
uim_notify_init()
{
if (!inited) {
+ int argc = 1;
+ char *argv[1] = { "uim" };
+
KApplication app(argc, argv, "uim"); // XXX
inited = 1;
}