From b3547b40596843aab71560d7fa2c2be19061c84a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 25 Feb 2004 10:00:37 +0000 Subject: [PATCH] Access the static method directly (not that it wouldn't work via NULL pointer). svn path=/trunk/kdebase/kwin/; revision=291219 --- killer/killer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/killer/killer.cpp b/killer/killer.cpp index bb58a7b044..0c97833583 100644 --- a/killer/killer.cpp +++ b/killer/killer.cpp @@ -45,7 +45,7 @@ static const KCmdLineOptions options[] = int main( int argc, char* argv[] ) { - KGlobal::locale()->setMainCatalogue( "kwin" ); // the messages are in kwin's .po file + KLocale::setMainCatalogue( "kwin" ); // the messages are in kwin's .po file KCmdLineArgs::init( argc, argv, "kwin_killer_helper", I18N_NOOP( "KWin" ), I18N_NOOP( "KWin helper utility" ), "1.0" ); KCmdLineArgs::addCmdLineOptions( options );