summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-23remove unused DatabaseFolder dialog from MSIAndras Timar
2012-03-23Take a meg off our memory footprintCaolá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-23DbEnv argument is always NULLCaolán McNamara
2012-03-23build db4 with symbols if symbols globally enabledCaolán McNamara
2012-03-23overly static lingering OUStringsCaolán McNamara
2012-03-23fixed crash due to use of STL deque for SwLineRectsCédric Bosdonnat
2012-03-23add testcase for n#751054Miklos Vajna
2012-03-23Initialize 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-23allow leading spaceDavid Tardon
2012-03-23allow for the use of --enable-ccache on WindowsNorbert Thiebaud
2012-03-23disable gb_FULLDEPS when TINDERBUILD is set _and_ we are really buildingNorbert Thiebaud
2012-03-23remove duplicate entriesDavid Tardon
2012-03-23simplify pagein creationDavid Tardon
2012-03-23move libs to correct layerDavid Tardon
2012-03-23move Pagein from desktop to gbuildDavid Tardon
2012-03-23increase nCol before next iteratation to prevent loop, fdo#46220Markus Mohrhard
2012-03-22Test for changing dimension member visibility & a little cleanup.Kohei Yoshida
2012-03-22More bug fixes related to grouped dimension handling.Kohei Yoshida
2012-03-22Get 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-22When updating pivot table with groups, we need to clear the table data.Kohei Yoshida
2012-03-23Memcheck: Jump depends on unitialised variableMarkus Mohrhard
2012-03-23Remove deprecated chart ObjectType OBJECTTYPE_DATA_ERRORS.Rafael Dominguez
2012-03-23Create separate shape groups for each errorbar type.Rafael Dominguez
2012-03-23Set correct objecttype for errorbar.Rafael Dominguez
2012-03-23Display Format menu entry when selecting an X errorbar.Rafael Dominguez
2012-03-23Get correct datasource when calculating errorbar length.Rafael Dominguez
2012-03-23Update DeleteYErrorbar function to handle X and Y bars.Rafael Dominguez
2012-03-23Set errorbar type attribute when inserting or formating an errorbar.Rafael Dominguez
2012-03-23Return correct ItemConverter object for any errorbar type.Rafael Dominguez
2012-03-23Enable support to format chart errorbars.Rafael Dominguez
2012-03-23Handle case XErrorbars in ErrorBarItemConverter::ApplySpecialItem.Rafael Dominguez
2012-03-23Allow deleting any chart errorbar and set correct action description.Rafael Dominguez
2012-03-23Determine ranges correctly for any type of chart errorbar object.Rafael Dominguez
2012-03-23Add FormatXErrorBar, DeleteXErrorBar menu entries in chart.Rafael Dominguez
-Update ModelState to reflect the changes.
2012-03-23Display XErrorBars in object hierarchy.Rafael Dominguez
2012-03-23Return 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-23Get correct errorbar CID depending on the direction.Rafael Dominguez
2012-03-23Enable statistics if chart has any type of errorbars.Rafael Dominguez
2012-03-23Specialize STR_OBJECT_ERROR_BARS for each errobar type.Rafael Dominguez
2012-03-23Add 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-23Add chart insert X errorbar toolbar and popup menu entries.Rafael Dominguez
- Dispatch the commands to the proper functions.
2012-03-23Add correct tabpage to chart property dialog.Rafael Dominguez
- Added needed strings resources and ids. - Added code to handle X and Z errorbars.
2012-03-23Set chart objecttype depending on errorbar type.Rafael Dominguez
2012-03-23Display correct errorbar in InsertDialog.Rafael Dominguez
2012-03-23Make 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-23Merge InsertMenu_YErrorBar and InsertYErrorBar commands in chart controller.Rafael Dominguez
2012-03-23Create respective error bars in areachart when creating shapes.Rafael Dominguez
2012-03-23Set bar type as YErrorBar when creating InsertErrorBarsDialog.Rafael Dominguez
2012-03-23Remove default values in InsertErrorBarsDialog constructor.Rafael Dominguez
- Require passing desired error bar to modify in constructor and not have YErrorBar as default.
2012-03-23Add function to create X error bars in VSeriesPlotter class.Rafael Dominguez