Revision: 6171
Author: nogu.dev
Date: Sat Feb 27 15:01:50 2010
Log: * qt4/candwin/qt4.cpp
  - Replace NULL with 0.
http://code.google.com/p/uim/source/detail?r=6171

Modified:
 /trunk/qt4/candwin/qt4.cpp

=======================================
--- /trunk/qt4/candwin/qt4.cpp  Sat Feb 27 15:01:37 2010
+++ /trunk/qt4/candwin/qt4.cpp  Sat Feb 27 15:01:50 2010
@@ -63,7 +63,7 @@
                                    | Qt::X11BypassWindowManagerHint
 #endif
                                  );
-static QSocketNotifier *notifier = NULL;
+static QSocketNotifier *notifier = 0;

 CandidateWindow::CandidateWindow( QWidget *parent, const char * name )
         : Q3VBox( parent, name, candidateFlag )
@@ -123,7 +123,7 @@
     stores.clear();

     // get charset and create codec
-    QTextCodec *codec = NULL;
+    QTextCodec *codec = 0;
     if ( !list[ 1 ].isEmpty() && list[ 1 ].startsWith( "charset" ) )
     {
         const QStringList l = QStringList::split( "=", list[ 1 ] );
@@ -285,7 +285,7 @@
     int page = 0;

     // get charset and create codec
-    QTextCodec *codec = NULL;
+    QTextCodec *codec = 0;
     if ( !list[ 1 ].isEmpty() && list[ 1 ].startsWith( "charset" ) )
     {
         const QStringList l = QStringList::split( "=", list[ 1 ] );

Reply via email to