qconf.cc (aa72f6899b9fb3dc824c458234ae3507a60e462d) | qconf.cc (5a6f8d2bd9e3392569ed6f29ea4d7210652f929b) |
---|---|
1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <qglobal.h> 7 8#if QT_VERSION < 0x040000 --- 1731 unchanged lines hidden (view full) --- 1740int main(int ac, char** av) 1741{ 1742 ConfigMainWindow* v; 1743 const char *name; 1744 1745 bindtextdomain(PACKAGE, LOCALEDIR); 1746 textdomain(PACKAGE); 1747 | 1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <qglobal.h> 7 8#if QT_VERSION < 0x040000 --- 1731 unchanged lines hidden (view full) --- 1740int main(int ac, char** av) 1741{ 1742 ConfigMainWindow* v; 1743 const char *name; 1744 1745 bindtextdomain(PACKAGE, LOCALEDIR); 1746 textdomain(PACKAGE); 1747 |
1748#ifndef LKC_DIRECT_LINK 1749 kconfig_load(); 1750#endif 1751 | |
1752 progname = av[0]; 1753 configApp = new QApplication(ac, av); 1754 if (ac > 1 && av[1][0] == '-') { 1755 switch (av[1][1]) { 1756 case 'h': 1757 case '?': 1758 usage(); 1759 } --- 27 unchanged lines hidden --- | 1748 progname = av[0]; 1749 configApp = new QApplication(ac, av); 1750 if (ac > 1 && av[1][0] == '-') { 1751 switch (av[1][1]) { 1752 case 'h': 1753 case '?': 1754 usage(); 1755 } --- 27 unchanged lines hidden --- |