comparison src/gui_kde_x11.cc @ 131:5c65f9e56459

updated for version 7.0044
author vimboss
date Tue, 25 Jan 2005 22:03:25 +0000
parents 014ba200db86
children d292c40ca788
comparison
equal deleted inserted replaced
130:964dc7d8b63d 131:5c65f9e56459
233 { 233 {
234 mch_memmove(&argv[i], &argv[i + 1], (*argc - i) * sizeof(char *)); 234 mch_memmove(&argv[i], &argv[i + 1], (*argc - i) * sizeof(char *));
235 i--; 235 i--;
236 } 236 }
237 } 237 }
238 KCmdLineArgs::init(gui_argc, gui_argv, "kvim", 238 KCmdLineArgs::init(gui_argc, gui_argv, argv[0], I18N_NOOP("KVim"),
239 I18N_NOOP("Vim inside KDE"), VIM_VERSION_SHORT); 239 I18N_NOOP("Vim inside KDE"), VIM_VERSION_SHORT);
240 }// }}} 240 }// }}}
241 241
242 /**************************************************************************** 242 /****************************************************************************
243 * Focus handlers: 243 * Focus handlers:
1406 }//}}} 1406 }//}}}
1407 1407
1408 void 1408 void
1409 gui_mch_set_foreground ()//{{{ 1409 gui_mch_set_foreground ()//{{{
1410 { 1410 {
1411 KWin::setActiveWindow(vmw->winId()); 1411 KWin::activateWindow(vmw->winId());
1412 }//}}} 1412 }//}}}