1. 14 10月, 2015 16 次提交
  2. 09 4月, 2015 1 次提交
  3. 09 10月, 2013 1 次提交
  4. 30 1月, 2013 1 次提交
  5. 25 7月, 2011 1 次提交
  6. 07 6月, 2011 1 次提交
  7. 25 5月, 2011 1 次提交
  8. 20 9月, 2010 2 次提交
  9. 06 9月, 2010 1 次提交
  10. 01 9月, 2010 1 次提交
    • A
      kconfig qconf: port to QT4 · 133c5f7c
      Alexander Stein 提交于
      A straight forward port to QT4 using qt3to4 and compiling against
        qt3support
      
      * Use pkg-config to detect QT4 which is hopefully portable enough
      * If no QT4, QT3 will by tried instead
      * Classes renamed using qt3to4
        * If build using QT3 renamed to QT3 class names using defines
      * ConfigInfoView::menu has to be renamed as QT4 moc strips struct from
        struct menu and creates a name conflict
      * QT2 support has been dropped
      * The hidden options inserted in 39a4897c
        are use in native API
      Signed-off-by: NAlexander Stein <alexander.stein@informatik.tu-chemnitz.de>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      133c5f7c
  11. 02 6月, 2010 3 次提交
  12. 20 9月, 2009 1 次提交
  13. 10 6月, 2009 5 次提交
    • M
      kconfig: do not hardcode ".config" filename · 284026cd
      Markus Heidelberg 提交于
      Rather than hardcoding ".config" use conf_get_configname(), which also
      respects the environment variable KCONFIG_CONFIG.
      
      This fixes "make silentoldconfig" when KCONFIG_CONFIG is used and also
      suggests the given filename for "Load" and "Save as" in qconf.
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      284026cd
    • M
      kconfig qconf: fix the type of the desktop widget · 8d90c97e
      Markus Heidelberg 提交于
      QApplication::desktop() returns a pointer to QDesktopWidget, not to
      QWidget.
      
      Fixes the following compiler error after a quick conversion with 'qt3to4',
      which occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.
      
      scripts/kconfig/qconf.cc: In constructor 'ConfigMainWindow::ConfigMainWindow()':
      scripts/kconfig/qconf.cc:1289: error: cannot convert 'QDesktopWidget*' to 'QWidget*' in initialization
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      8d90c97e
    • M
      kconfig qconf: add namespace for use of Key_ enum values · fbb86374
      Markus Heidelberg 提交于
      They are defined in the 'Qt' namespace.
      
      Fixes the following compiler errors after a quick conversion with 'qt3to4',
      which occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.
      
      scripts/kconfig/qconf.cc: In member function 'virtual void ConfigLineEdit::keyPressEvent(QKeyEvent*)':
      scripts/kconfig/qconf.cc:311: error: 'Key_Escape' was not declared in this scope
      scripts/kconfig/qconf.cc:313: error: 'Key_Return' was not declared in this scope
      scripts/kconfig/qconf.cc:314: error: 'Key_Enter' was not declared in this scope
      
      scripts/kconfig/qconf.cc: In member function 'virtual void ConfigList::keyPressEvent(QKeyEvent*)':
      scripts/kconfig/qconf.cc:653: error: 'Key_Escape' was not declared in this scope
      scripts/kconfig/qconf.cc:666: error: 'Key_Return' was not declared in this scope
      scripts/kconfig/qconf.cc:667: error: 'Key_Enter' was not declared in this scope
      scripts/kconfig/qconf.cc:681: error: 'Key_Space' was not declared in this scope
      scripts/kconfig/qconf.cc:684: error: 'Key_N' was not declared in this scope
      scripts/kconfig/qconf.cc:687: error: 'Key_M' was not declared in this scope
      scripts/kconfig/qconf.cc:690: error: 'Key_Y' was not declared in this scope
      
      scripts/kconfig/qconf.cc: In constructor 'ConfigMainWindow::ConfigMainWindow()':
      scripts/kconfig/qconf.cc:1329: error: 'CTRL' was not declared in this scope
      scripts/kconfig/qconf.cc:1329: error: 'Key_Q' was not declared in this scope
      scripts/kconfig/qconf.cc:1331: error: 'Key_L' was not declared in this scope
      scripts/kconfig/qconf.cc:1333: error: 'Key_S' was not declared in this scope
      scripts/kconfig/qconf.cc:1340: error: 'Key_F' was not declared in this scope
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      fbb86374
    • M
      kconfig qconf: fix namespace for Horizontal and Vertical enum values · 7298b936
      Markus Heidelberg 提交于
      They were used as QSplitter::Horizontal resp. QSplitter::Vertical, but
      are defined in the 'Qt' namespace.
      
      Fixes the following compiler errors after a quick conversion with 'qt3to4',
      which occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.
      
      scripts/kconfig/qconf.cc: In constructor 'ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow*, const char*)':
      scripts/kconfig/qconf.cc:1213: error: 'Vertical' is not a member of 'QSplitter'
      
      scripts/kconfig/qconf.cc: In constructor 'ConfigMainWindow::ConfigMainWindow()':
      scripts/kconfig/qconf.cc:1304: error: 'Horizontal' is not a member of 'QSplitter'
      scripts/kconfig/qconf.cc:1311: error: 'Vertical' is not a member of 'QSplitter'
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      7298b936
    • M
      kconfig qconf: fix -Wall compiler warnings · 98403a91
      Markus Heidelberg 提交于
      These compiler warnings occure when adding -Wall to HOSTCXXFLAGS in
      /Makefile
      
      scripts/kconfig/qconf.h: In constructor ‘ConfigInfoView::ConfigInfoView(QWidget*, const char*)’:
      scripts/kconfig/qconf.h:274: warning: ‘ConfigInfoView::menu’ will be initialized after
      scripts/kconfig/qconf.h:273: warning:   ‘symbol* ConfigInfoView::sym’
      scripts/kconfig/qconf.cc:922: warning:   when initialized here
      
      scripts/kconfig/qconf.cc: In member function ‘void ConfigMainWindow::setMenuLink(menu*)’:
      scripts/kconfig/qconf.cc:1498: warning: enumeration value ‘menuMode’ not handled in switch
      scripts/kconfig/qconf.cc:1498: warning: enumeration value ‘listMode’ not handled in switch
      
      scripts/kconfig/qconf.cc: In member function ‘void ConfigMainWindow::saveSettings()’:
      scripts/kconfig/qconf.cc:1664: warning: enumeration value ‘menuMode’ not handled in switch
      scripts/kconfig/qconf.cc:1664: warning: enumeration value ‘listMode’ not handled in switch
      Signed-off-by: NMarkus Heidelberg <markus.heidelberg@web.de>
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      98403a91
  14. 29 1月, 2008 2 次提交
  15. 21 10月, 2007 1 次提交
  16. 26 7月, 2007 1 次提交
    • S
      kconfig: attach help text to menus · 03d29122
      Sam Ravnborg 提交于
      Roman Zippel wrote:
      > A simple example would be
      > help texts, right now they are per symbol, but they should really be per
      > menu, so archs can provide different help texts for something.
      
      This patch does this and at the same time introduce a few API
      funtions used to access the help text.
      
      The relevant api functions are introduced in the various frontends.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Roman Zippel <zippel@linux-m68k.org>
      03d29122
  17. 03 5月, 2007 1 次提交