summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_wince-opengl.qdoc
diff options
context:
space:
mode:
authorPeter Yard <peter.yard@nokia.com>2009-07-24 00:49:35 (GMT)
committerPeter Yard <peter.yard@nokia.com>2009-07-24 00:49:35 (GMT)
commit851fc0fdb1dcb54cbde82ffad0b54cfe3f896b83 (patch)
treec210d608a3592cabffc15e957f41a1b286604efa /doc/src/snippets/code/doc_src_wince-opengl.qdoc
parente37d314eb3e5b26b271aa5ec17dac1f2e8e16a45 (diff)
downloadQt-851fc0fdb1dcb54cbde82ffad0b54cfe3f896b83.zip
Qt-851fc0fdb1dcb54cbde82ffad0b54cfe3f896b83.tar.gz
Qt-851fc0fdb1dcb54cbde82ffad0b54cfe3f896b83.tar.bz2
#159306 QAbstractItemModel::reset Doc change
Diffstat (limited to 'doc/src/snippets/code/doc_src_wince-opengl.qdoc')
0 files changed, 0 insertions, 0 deletions
d4d810b380cd0919ce&showmsg=1'>src
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r2385] Elena Pourmal2000-06-091-1/+1
| | | | Changed H5_VERS_SUBRELEASE string to "" for the hdf5-1.2.2 release.
* [svn-r2375] Prototype for H5Pget_gc_references function was misnamed.Bill Wendling2000-06-081-1/+1
|
* [svn-r2374] An HRETURN_ERROR macro was returning a "NULL" value when it ↵Bill Wendling2000-06-081-4/+9
| | | | | | should be returning "FAIL".
* [svn-r2283] Elena Pourmal2000-05-191-1/+1
| | | | Changed H5_VERS_SUBRELEASE to snap1.
* [svn-r2265] *** empty log message ***Robb Matzke2000-05-181-8/+16
|
* [svn-r2263] * 2000-05-18Robb Matzke2000-05-189-535/+981
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ** src/H5Tconv.c [1.2,1.3] ** src/H5Tpkg.h [1.2,1.3] ** src/H5Tpublic.h [1.2,1.3] The H5T_conv_struct_opt() function had a design flaw -- it didn't keep information about the stride to use to step through the temporary/background-value buffer and thus nested invocations would clobber each other's temp buffers. This was fixed by splitting the `stride' argument into `buf_stride' and `bkg_stride' arguments for all the conversion functions. THIS IS AN API CHANGE, but users will get a compiler warning when they pass their conversion function pointer to H5Tregister(). ** src/H5T.c [1.2,1.3] ** src/H5Tprivate.h [1.2,1.3] Added a bkg_stride argument to the H5T_convert() definition in order to fix a bug related to the optimized compound datatype conversion function. ** src/H5T.c [1.2,1.3] ** src/H5A.c [1.2,1.3] ** src/H5D.c [1.2,1.3] ** src/H5Ofill.c [1.2,1.3] ** src/H5P.c [1.2,1.3] Added bkg_stride=0 argument to the H5T_convert() calls. ** test/dtypes.c [1.2,1.3] Added a test for the H5T_conv_struct_opt() bug fixed above.
* [svn-r2260] Updated all these dependant files.Albert Cheng2000-05-171-16/+8
|
* [svn-r2258] Elena Pourmal2000-05-171-4/+4
| | | | Fixed a typo in the H5Pget_gc_references function name (was H5Pget_gc_reference).
* [svn-r2194] Fixed up differences in how addresses are handled between ↵Quincey Koziol2000-04-223-8/+12
| | | | | | development and release branches.
* [svn-r2193] Changed hash function for caching to avoid as many hash clashes.Quincey Koziol2000-04-222-30/+16
|
* [svn-r2192] Turned on address sorting when flushing metadata for entire ↵Quincey Koziol2000-04-221-1/+4
| | | | | | | file, which improves performance significantly when lots of metadata I/O occurs when the file closes.
* [svn-r2184] ./src/H5Epublic.hRobb Matzke2000-04-213-4/+5
| | | | | | | | | | | | | | Removed `do{...} while(0)' to fix compiler warnings. ./src/H5T.c Removed a blank line (wow!) ./src/H5public.h Added some more #undef's Removed leading hyphen from H5_VERS_SUBRELEASE Changed the subrelease from `pre0' to `snap0'
* [svn-r2173] Updated dependency and API tracing informationQuincey Koziol2000-04-212-48/+106
|
* [svn-r2171] Fixed a few typos in FUNC_ENTER macros and return types that ↵Quincey Koziol2000-04-211-12/+12
| | | | Binh-Minh found.
* [svn-r2166] Fixed last batch of problems when using free-lists on the SGI ↵Quincey Koziol2000-04-209-41/+47
| | | | | | machines. They should (hopefully) work on all platforms again now.
* [svn-r2161] Modified B-tree splits so they avoid the redundant metadata I/O ↵Quincey Koziol2000-04-192-34/+114
| | | | | | which was occurring when moving a metadata block in the file.
* [svn-r2152] Modified H5_term_library to not reported errors when ↵Quincey Koziol2000-04-156-287/+274
| | | | | | | | H5Eset_auto(NULL,NULL) has turned off error reporting in the library. Also, changed the way property lists are managed and closed so that they can be automatically closed when the library terminates.
* [svn-r2148] Corrected a few problems in the free-list code and added more ↵Quincey Koziol2000-04-147-23/+53
| | | | | | | | | assert() macros to double-check things. I've turned them back on again now. I also changed the internal representation of a few struct fields to be float instead of double, since the HP/UX 10.20 compiler was having problems with the alignment of the doubles.
* [svn-r2134] Changed H5Screate_simple & H5Sset_extent_simple to disallowQuincey Koziol2000-04-121-6/+15
| | | | size 0 dimensions without corresponding unlimited dimension.
* [svn-r2128] Changed return type of H5Aiterate and the H5A_operator_t to ↵Quincey Koziol2000-04-122-3/+3
| | | | | | herr_t, to align them with the dataset & group iterator functions.
* [svn-r2123] Fixed small problem with va_arg & shorts and floats in ↵Quincey Koziol2000-04-121-3/+3
| | | | | | HDfprintf. This closes bug #401.
* [svn-r2120] Fixed error which manifested in H5Giterate, causing groups with ↵Quincey Koziol2000-04-121-1/+1
| | | | | | | more than one level of B-tree nodes and callback functions which returned non-zero to not work correctly.
* [svn-r2109] Re-wrote a good chunk of the hyperslab code to work correctly in ↵Quincey Koziol2000-04-112-410/+266
| | | | | | | several situations which weren't tested before. Things should be both faster and easier to understand in this code now.
* [svn-r2107] Fixed small bug where we were reading a value out of a piece of ↵Quincey Koziol2000-04-111-9/+9
| | | | | | | memory we'd just free'd. A small bug, but it will cause problems in a threaded environment. (And it was filling up the purify logfile with junk.. :-)
* [svn-r2104] Turned off the free lists until I can debug them on the ↵Quincey Koziol2000-04-101-1/+1
| | | | | | platforms they are failing on...
* [svn-r2103] Checking in newer version of free-list code with easy way to ↵Quincey Koziol2000-04-101-0/+52
| | | | | | | | turn off the free-lists for the library. To turn off the free-lists, edit H5FL.c and uncomment the "NO_FREE_LISTS" macro definition near the top of the file. (Or define the macro during compile time)
* [svn-r2095] Fixed error in iterating through hyperslabs in certain ↵Quincey Koziol2000-04-071-26/+29
| | | | | | situations where hyperslabs were staggered in the dataset.
* [svn-r2078] Fixed a problem in H5Giterate which was not updating the 'index' ↵Quincey Koziol2000-04-053-25/+36
| | | | | | paramater for certain return values from the callback.
* [svn-r2072] Added free-list code to the library and took out the older ↵Quincey Koziol2000-04-04