summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_widgets_qvalidator.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2010-03-18 11:31:52 (GMT)
committerOlivier Goffart <ogoffart@trolltech.com>2010-03-23 13:36:15 (GMT)
commit5d27c5485023998c3771bded0b86f1ae836a44af (patch)
tree81132389fe0150cab85ebf4830bc6f02b9006de5 /doc/src/snippets/code/src_gui_widgets_qvalidator.cpp
parentafb4eee57f22461c329aac534c8d0468c234acfd (diff)
downloadQt-5d27c5485023998c3771bded0b86f1ae836a44af.zip
Qt-5d27c5485023998c3771bded0b86f1ae836a44af.tar.gz
Qt-5d27c5485023998c3771bded0b86f1ae836a44af.tar.bz2
Fix warnings in tst_qobject.cpp
Diffstat (limited to 'doc/src/snippets/code/src_gui_widgets_qvalidator.cpp')
0 files changed, 0 insertions, 0 deletions
an> | | | | | | | | | | | 8ea7611b find_program: Optionally consider all names in each directory fc1990c9 cmFindProgramCommand: Re-implement search using more flexible approach fdbfc9f6 Tests: Add explicit testing for find_program 907a919b cmSystemTools: Drop unused StringEndsWith method ed4de3c9 cmFindProgramCommand: Use Names member instead of passing it bf32b95e cmFindLibraryCommand: Avoid repeating search for the same name | * | | | | | | | | | | | | | find_program: Optionally consider all names in each directoryBrad King2015-09-027-1/+64 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When more than one value is given to the NAMES option this command by default will consider one name at a time and search every directory for it. Add a NAMES_PER_DIR option to tell this command to consider one directory at a time and search for all names in it. | * | | | | | | | | | | | | | cmFindProgramCommand: Re-implement search using more flexible approachBrad King2015-09-022-1/+97 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Avoid using KWSys SystemTools::FindProgram because it does much more than we actually need for find_program and does not allow us to control the order of preference between directories and names. Create our own cmFindProgramHelper much like cmFindLibraryHelper but without all the find_library-specific parts. | * | | | | | | | | | | | | | Tests: Add explicit testing for find_programBrad King2015-09-0214-0/+35 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously this command was tested only implicitly as part of larger tests. Add a RunCMake.find_program test to cover find_program cases specifically and independently. | * | | | | | | | | | | | | | cmSystemTools: Drop unused StringEndsWith methodBrad King2015-09-022-11/+0 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has no callers and we can inherit one from KWSys SystemTools anyway. | * | | | | | | | | | | | | | cmFindProgramCommand: Use Names member instead of passing itBrad King2015-09-022-13/+10 | | | | | | | | | | | | | | | | * | | | | | | | | | | | | | cmFindLibraryCommand: Avoid repeating search for the same nameBrad King2015-09-021-2/+9 | | |/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In FindNormalLibraryDirsPerName we consider one name at a time and search the entire path. Avoid repeated consideration of names by removing each one from the list of candidates before considering the next one. This will not change behavior because we already know the earlier candidates were not found on repeated considering anyway. * | | | | | | | | | | | | | Merge topic 'FindOpenSSL-static-libs'Brad King2015-09-082-5/+35 |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 369a8cde FindOpenSSL: Optionally search only for static libraries | * | | | | | | | | | | | | | FindOpenSSL: Optionally search only for static librariesThijs Wenker2015-09-022-5/+35 | |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an OPENSSL_USE_STATIC_LIBS option to enable it. Adjust CMAKE_FIND_LIBRARY_SUFFIXES to only look for .a and .lib files. Also adjust the search paths on Windows for installer locations of static libraries. * | | | | | | | | | | | | | Merge topic 'FindZLIB-per-config'Brad King2015-09-082-5/+45 |\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 11097f52 FindZLIB: Find debug and release variants separately | * | | | | | | | | | | | | | FindZLIB: Find debug and release variants separatelyMichael Scott2015-09-022-5/+45 | |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Provide each variant in ZLIB_LIBRARIES and ZLIB::ZLIB imported location properties when one is found, while maintaining support for manually setting the library via ZLIB_LIBRARY. * | | | | | | | | | | | | | Merge topic 'update-kwsys'Brad King2015-09-08