comparison pidgin/win32/winpidgin.c @ 31594:2c29fe4757a2

Allowed pidgin on windows to properly handle combined arguments (i.e. "-dm" as opposed to "-d -m")
author morshed.nader@gmail.com
date Thu, 13 Jan 2011 08:24:28 +0000
parents 3d045343e04d
children
comparison
equal deleted inserted replaced
31593:cc282e31e5c8 31594:2c29fe4757a2
630 else if (strstr(__argv[i], "--multiple") == __argv[i]) 630 else if (strstr(__argv[i], "--multiple") == __argv[i])
631 multiple = TRUE; 631 multiple = TRUE;
632 } else { 632 } else {
633 if (strchr(__argv[i], 'd')) 633 if (strchr(__argv[i], 'd'))
634 debug = TRUE; 634 debug = TRUE;
635 else if (strchr(__argv[i], 'h')) 635 if (strchr(__argv[i], 'h'))
636 help = TRUE; 636 help = TRUE;
637 else if (strchr(__argv[i], 'v')) 637 if (strchr(__argv[i], 'v'))
638 version = TRUE; 638 version = TRUE;
639 else if (strchr(__argv[i], 'm')) 639 if (strchr(__argv[i], 'm'))
640 multiple = TRUE; 640 multiple = TRUE;
641 } 641 }
642 } 642 }
643 } 643 }
644 644