Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-23 | remove unused DatabaseFolder dialog from MSI | Andras Timar | |
2012-03-23 | Take a meg off our memory footprint | Caolán McNamara | |
We create 6 berkleydb backed databases. If no DB_ENV is provided for a database, then berkleydb creates one for each database. Each environment has a memory footprint of about 200k. It appears to be legal to share an environment, which shaves about 1M off our permanant footprint. | |||
2012-03-23 | DbEnv argument is always NULL | Caolán McNamara | |
2012-03-23 | build db4 with symbols if symbols globally enabled | Caolán McNamara | |
2012-03-23 | overly static lingering OUStrings | Caolán McNamara | |
2012-03-23 | fixed crash due to use of STL deque for SwLineRects | Cédric Bosdonnat | |
2012-03-23 | add testcase for n#751054 | Miklos Vajna | |
2012-03-23 | Initialize m_hFile in FileMapping constructor. | Catalin Iacob | |
GCC gives the following warning which breaks compilation when using --enable-werror: lockbyte.cxx: In function 'storeError store::FileLockBytes_createInstance(rtl::Reference<store::ILockBytes>&, rtl_uString*, storeAccessMode)': lockbyte.css:512:37: error: 'prephitmp.221' may be used uninitialized in this function [-Werror=uninitialized] lockbyte.cxx:906:1: note: 'prephitmp.221' was declared here It's not clear from GCC's message, but what it warns about is FileMapping::m_hFile. This is because of the following sequence: * xMapping.release() makes xMapping.m_value be a default constructed FileMapping * the xMapping local variable in store::FileLockBytes_createInstance gets destructed * ~ResourceHolder() calls ResourceHolder::reset * ResourceHolder::reset() calls FileMapping::UnmapFile::operator() passing m_value as rMapping * FileMapping::UnmapFile::operator() uses rMapping.m_hFile but rMapping is a default constructed FileMapping and therefore has m_hFile uninitialized Signed-off-by: Stephan Bergmann <sbergman@redhat.com>: To me, this looks more like a compiler error. Also note that ResourceHolder::reset only calls FileMapping::UnmapFile::operator() if tmp != value, which is not the case here, as both tmp and value are default- constructed. And FileMapping::operator!= is carefule not to use the potentially uninitialized m_hFile. But always intiializing m_hFile is probably not a bad idea, anyway. And if it helps a certain compiler, all the better. | |||
2012-03-23 | allow leading space | David Tardon | |
2012-03-23 | allow for the use of --enable-ccache on Windows | Norbert Thiebaud | |
2012-03-23 | disable gb_FULLDEPS when TINDERBUILD is set _and_ we are really building | Norbert Thiebaud | |
2012-03-23 | remove duplicate entries | David Tardon | |
2012-03-23 | simplify pagein creation | David Tardon | |
2012-03-23 | move libs to correct layer | David Tardon | |
2012-03-23 | move Pagein from desktop to gbuild | David Tardon | |
2012-03-23 | increase nCol before next iteratation to prevent loop, fdo#46220 | Markus Mohrhard | |
2012-03-22 | Test for changing dimension member visibility & a little cleanup. | Kohei Yoshida | |
2012-03-22 | More bug fixes related to grouped dimension handling. | Kohei Yoshida | |
2012-03-22 | Get correct string value for group item value. | Kohei Yoshida | |
Unlike the old version, the new version no longer stores string value for non-string items. We need to call GetFormattedString() for that. | |||
2012-03-22 | When updating pivot table with groups, we need to clear the table data. | Kohei Yoshida | |
2012-03-23 | Memcheck: Jump depends on unitialised variable | Markus Mohrhard | |
2012-03-23 | Remove deprecated chart ObjectType OBJECTTYPE_DATA_ERRORS. | Rafael Dominguez | |
2012-03-23 | Create separate shape groups for each errorbar type. | Rafael Dominguez | |
2012-03-23 | Set correct objecttype for errorbar. | Rafael Dominguez | |
2012-03-23 | Display Format menu entry when selecting an X errorbar. | Rafael Dominguez | |
2012-03-23 | Get correct datasource when calculating errorbar length. | Rafael Dominguez | |
2012-03-23 | Update DeleteYErrorbar function to handle X and Y bars. | Rafael Dominguez | |
2012-03-23 | Set errorbar type attribute when inserting or formating an errorbar. | Rafael Dominguez | |
2012-03-23 | Return correct ItemConverter object for any errorbar type. | Rafael Dominguez | |
2012-03-23 | Enable support to format chart errorbars. | Rafael Dominguez | |
2012-03-23 | Handle case XErrorbars in ErrorBarItemConverter::ApplySpecialItem. | Rafael Dominguez | |
2012-03-23 | Allow deleting any chart errorbar and set correct action description. | Rafael Dominguez | |
2012-03-23 | Determine ranges correctly for any type of chart errorbar object. | Rafael Dominguez | |
2012-03-23 | Add FormatXErrorBar, DeleteXErrorBar menu entries in chart. | Rafael Dominguez | |
-Update ModelState to reflect the changes. | |||
2012-03-23 | Display XErrorBars in object hierarchy. | Rafael Dominguez | |
2012-03-23 | Return the correct errorbar property set. | Rafael Dominguez | |
Select the errorbar propertyset according to the errorbar direction instead of only using Y errorbar propertyset in ObjectIdentifier::getObjectPropertySet function. | |||
2012-03-23 | Get correct errorbar CID depending on the direction. | Rafael Dominguez | |
2012-03-23 | Enable statistics if chart has any type of errorbars. | Rafael Dominguez | |
2012-03-23 | Specialize STR_OBJECT_ERROR_BARS for each errobar type. | Rafael Dominguez | |
2012-03-23 | Add chart errorbar type property. | Rafael Dominguez | |
- Make StatisticsItemConverter work with X and Y errorbars. - Fill errorbar type property in ErrorBarResources. - Set default value of errorbar type property to Y bar. | |||
2012-03-23 | Add chart insert X errorbar toolbar and popup menu entries. | Rafael Dominguez | |
- Dispatch the commands to the proper functions. | |||
2012-03-23 | Add correct tabpage to chart property dialog. | Rafael Dominguez | |
- Added needed strings resources and ids. - Added code to handle X and Z errorbars. | |||
2012-03-23 | Set chart objecttype depending on errorbar type. | Rafael Dominguez | |
2012-03-23 | Display correct errorbar in InsertDialog. | Rafael Dominguez | |
2012-03-23 | Make executeDispatch_InsertYErrorBars a generic function. | Rafael Dominguez | |
- Make the function usable for XError and YError bars. - Rename executeDispatch_InsertYErrorBars to executeDispatch_InsertErrorBars. - Add a new parameter that control the error bar direction. - Update arguments in callers. | |||
2012-03-23 | Merge InsertMenu_YErrorBar and InsertYErrorBar commands in chart controller. | Rafael Dominguez | |
2012-03-23 | Create respective error bars in areachart when creating shapes. | Rafael Dominguez | |
2012-03-23 | Set bar type as YErrorBar when creating InsertErrorBarsDialog. | Rafael Dominguez | |
2012-03-23 | Remove default values in InsertErrorBarsDialog constructor. | Rafael Dominguez | |
- Require passing desired error bar to modify in constructor and not have YErrorBar as default. | |||
2012-03-23 | Add function to create X error bars in VSeriesPlotter class. | Rafael Dominguez | |