summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-24Remove unused method UnoControlBase::UnoControlBase()Xavi Escriche Galindo
2012-04-24WaE: mixing comparison of bool and sal_BoolCaolán McNamara
2012-04-24Patch to build libcdr with clangFridrich Štrba
2012-04-24WaE: return SYMBOL -> return trueCaolán McNamara
has been return SYMBOL since initial checkin in 2000, SYMBOL is a non-0 enum so return true here instead
2012-04-24uploading new shiny libcdr-0.0.7 releaseFridrich Štrba
2012-04-24WaE: silence warnings from msvc2008 (again)Caolán McNamara
2012-04-24-Werror=unused-variableStephan Bergmann
2012-04-24Revert "Avoid bogus warnings (GCC 4.4.6)"Stephan Bergmann
This reverts commit cf9c715aee2f97a1a6f611fe46a47e238cb03658. 3c82780cbc7cf17cf348e7f49b99663cfdc42ed7 "Set gb_DEBUGLEVEL=1 for --enable-dbgutil after all" fixes the underlying problem, making this awkward workaround no longer necessary.
2012-04-24Set gb_DEBUGLEVEL=1 for --enable-dbgutil after allStephan Bergmann
This is a partial revert of db8df57acd601ed084bd0122683e1bd066a4f143 "fixes for debug flags handling." Removing this caused various nastinesses, at least: * Some tinderbox started to emit bogus compiler warnings at -O2 vs. -O0, see cf9c715aee2f97a1a6f611fe46a47e238cb03658 "Avoid bogus warnings (GCC 4.4.6)" * General DBG_UTIL vs. OSL_DEBUG_LEVEL confusion in the code, see 729165ebacc6ff8bd1e5c936252cdace1782824b "OSL_DEBUG_LEVEL > 0 -> defined DBG_UTIL" and a7c7942fd1946da978673d2c350630f83603d18d "DBG_UTIL vs OSL_DEBUG_LEVEL confusion" * --enable-dbgutil would no longer prevent -DNDEBUG (i.e., assert became ineffective in such builds)
2012-04-24Resolves: fdo#48011 writer idle-callbacks are halting when events pendingCaolán McNamara
Writer does a lot of work, e.g. spell-checking, word counting etc. in idle-callbacks. It halts work by checking for AnyInput, and if any input or paint etc is pending the idle-callbacks stop. With gtk3 rework pending events don't seem to be available quite right.
2012-04-24fdo#38176 fix RTF export of non-breaking hyphen and optional hyphenMiklos Vajna
2012-04-24WaE: simple minded MSVC2008 thinks s could be used uninitializedCaolán McNamara
2012-04-24WaE: MSVC2008 C4530 exception handler without unwind semanticsCaolán McNamara
2012-04-24fdo#38176 fix RTF export of non-breaking spaceMiklos Vajna
2012-04-24WaE: make MSVC happy wrt. RTFDocumentImpl::dispatchDestination()Miklos Vajna
2012-04-24tweak support Sheets.PrintPreview bnc#75784 allow specific sheet(s) selectionNoel Power
this is a followup to commit 17c8f6745f9f98013c1b08de8ec03be66546c7fc
2012-04-24create-tags: config_host.mk readingMiklos Vajna
2012-04-24default to Office 2007/2010 filter for ooxml export, fdo#48941Markus Mohrhard
2012-04-24first try for copy/paste formulas between docs test caseMarkus Mohrhard
2012-04-24add some more test cases for copying formulasMarkus Mohrhard
2012-04-24it's Erzya, not EryzaEike Rathke
2012-04-24AC_MSG_ERROR is better than WARN hereTor Lillqvist
2012-04-24Convert SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin
2012-04-24Use blank as the false value for ENABLE_CAIRO_CANVAS, tooTor Lillqvist
2012-04-24Hardcode cairo canvas off for Mac OS X and WindowsTor Lillqvist
Do not depend on a distro-configs file to disable it. It is supposed to be optional to pass a --with-distro option. Running a bare ./autogen.sh is supposed to produce a working configuration.
2012-04-24WaE: implicit conversion changes signednessTor Lillqvist
2012-04-24Bin weird DBGUTIL_OJ crackTor Lillqvist
2012-04-24WaE: equality comparison with extraneous parenthesesTor Lillqvist
2012-04-24WaE: using the result of an assignment as a condition without parenthesesTor Lillqvist
2012-04-24WaE: use of logical '&&' with constant operandTor Lillqvist
2012-04-24WaE: unused variableTor Lillqvist
2012-04-24WaE: implicitly declaring C library function 'objc_msgSend'Tor Lillqvist
2012-04-24Bin commented-out codeTor Lillqvist
2012-04-24WaE: assigning to 'AquaOpenGLView *' from incompatible type 'NSOpenGLView *'Tor Lillqvist
2012-04-24Add hopefully helpful commentTor Lillqvist
2012-04-24WaE: 'SceneObject' has virtual functions but non-virtual destructorTor Lillqvist
2012-04-24WaE: when type is in parentheses, array cannot have dynamic sizeTor Lillqvist
2012-04-24WaE: delete called on class that is abstract but has non-virtual destructorTor Lillqvist
2012-04-24WaE: 'ATSLayout::InitFont' hides overloaded virtual functionTor Lillqvist
2012-04-24WaE: unused functionsTor Lillqvist
2012-04-24WaE: incompatible pointer typesTor Lillqvist
2012-04-24WaE: unused variableTor Lillqvist
2012-04-24WaE: extra tokens at end of #endif directiveTor Lillqvist
2012-04-24WaE: incompatible pointer types: 'long *' vs. 'const GLint *'Tor Lillqvist
2012-04-24WaE: semicolon before method body is ignoredTor Lillqvist
2012-04-24Reduce chatterTor Lillqvist
2012-04-24WaE: equality comparison with extraneous parenthesesTor Lillqvist
2012-04-24Fix eleven year old typoTor Lillqvist
No idea if it has actually caused any uninteded behaviour, or if this fix now then causes something to break.
2012-04-24WaE: extra tokens at end of #endif directiveTor Lillqvist
2012-04-24DBG_UTIL vs OSL_DEBUG_LEVEL confusionStephan Bergmann