summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-11-01adapt naming schemeCaolán McNamara
2011-11-01ByteString->rtl::OStringCaolán McNamara
2011-11-01can go behind appropiate ifdefCaolán McNamara
2011-11-01drop unused GetViewCenterCaolán McNamara
2011-11-01ByteString->rtl::OStringCaolán McNamara
2011-11-01MetaCommentAction now using rtl::OStringCaolán McNamara
2011-11-01add and use an OString::equalsIgnoreAsciiCaseAscii equivalent to OUString oneCaolán McNamara
2011-11-01add and use an OString::equalsIgnoreAsciiCaseAsciiL equivalent to OUString oneCaolán McNamara
2011-11-01callcatcher: various unused methodsCaolán McNamara
2011-11-01ByteString->rtl::OStringCaolán McNamara
2011-11-01remove superfluous castsDavid Tardon
2011-11-01let PgUp/Down go to the first/last lineDavid Tardon
2011-11-01typo fix in UIAndras Timar
2011-11-01Fix fdo#41245 : Auto fit text VIEWING too small in PPTArnaud Versini
2011-11-01translate commentsLionel Elie Mamane
2011-11-01typo in commentLionel Elie Mamane
2011-10-31Delete some unused .hxx files from autodocJoseph Powers
2011-11-01we need to assign this value also for non unix platforms (fdo#40801)Markus Mohrhard
2011-10-31Moved CONFIGURATION_LAYERS from soffice to fundamental ini.Stephan Bergmann
...so that unopkg uses it, too.
2011-10-31update first ScMarkData before setting cursor (fdo#42432)Markus Mohrhard
our ScMarkData instance might be used to set the cursor which will result in a crash if the selected sheet has been deleted already
2011-10-31l10n updateAndras Timar
2011-10-31towards enabling l10n of extension description in swextAndras Timar
2011-10-31Revert "Move ScPostIt storage from ScBaseCell->ScDocument"Michael Meeks
This reverts commit 249faa5cb64a7270e852862a26b4a5e3a69a9895.
2011-10-31Move ScPostIt storage from ScBaseCell->ScDocumentKevin Hunter
ScPostIt is the behind-the-scenes name for Notes. This move removes a usually empty pointer for each ScBaseCell to list of pointers within ScDocument. The advantage is basically a reduction in size of 8 bytes per cell. The current sizeof(ScBaseCell) is 16. Here are the highlights: * Remove mpNote from ScBaseCell, and add a std::map (data structure) to ScDocument to store notes and associate with addresses. * Remove ScPostIt accessors and mutators from ScTable, ScColumn, and ScBaseCell * Replace ScPostIt accessors and mutators in ScDocument with ones to handle move of data structure from ScBaseCell to ScDocument * Rename ScPostIt.CloneWithoutNote to ScPostIt.Clone, while completely removing ScPostIt.CloneWithNote. Any cloning of cell notes must now be handled outside external to the ScPostIt class, through ScDocument.*Note() functions. * Rename ScNoteCell to a more ScEmptyCell. I expect this can be completely removed at some point the future, if we can handle broadcasters external to the cell logic. * Add ScDocument and ScTable to ScUsedAreaIterator data structure to accomodate for new placement of ScPostIt objects in ScDocument. * Convert CELLTYPE_NOTE to CELLTYPE_EMPTY (and all ensuing uses). * Wherever possible, respect 80-columns. * New ScDocument based API (individually block-comment documented before their definitions): SC_DLLPUBLIC ScPostIt* GetNote( ScAddress const & ); SC_DLLPUBLIC ScPostIt* GetOrCreateNote( const ScAddress& rPos ); bool SetNote( ScAddress const &, ScPostIt* ); bool MoveNote( ScAddress const & from, ScAddress const & to ); bool SwapNotes( ScAddress const &, ScAddress const & ); ScPostIt* ReleaseNote( ScAddress const & ); void DeleteNote( ScAddress const & ); Of note, TakeNote has been replaced with SetNote, which returns true on success, and false on failure. TakeNote indicated failure by removing the passed note. The SetNote approach leaves room for the caller to attempt to fix the issue, but also means the caller is now on the hook to cleanup the memory. For now, the Calc-internal API is lazy and does not take advantage of this, but merely says "You failed? Oh well, delete the note." ... which is exactly what TakeNote did. This means, the lazy-programmer's idiom for SetNote use is: if ( ! pDoc->SetNote( aAddress, pNotePointer ) ) DELETEZ( pNotePointer );
2011-10-31Translate German commentsPhilipp Weissenbacher
2011-10-31Cleaned up configmgr initialization.Stephan Bergmann
Added CONFIGURATION_LAYERS bootstrap variable. Removed OOO_CONFIG_REGISTRY[_EXTRA]_DIR bootstrap variables.
2011-10-31Removed obsolete gid_Profile_Soffice_Ini items.Stephan Bergmann
They have been duplicated to gid_Brand_Profile_Soffice_Ini a long time ago.
2011-10-31make --last-working checkout the last working versionMichael Meeks
thanks to Bjoern and Christian for tips.
2011-10-31enable localization of extension description in reportbuilderAndras Timar
2011-10-31The -something switches are obsolete, use --something instead.Jan Holesovsky
2011-10-31enable localization of extension descriptions in sdextAndras Timar
2011-10-31gtk: tolerate NULL from gdk_screen_get_monitor_plug_nameMichael Meeks
2011-10-31Make sure COMPONENT_EXTJARFILES are included in report-builder.oxt.Stephan Bergmann
2011-10-31change wiki's addressAndras Timar
2011-10-31change address of extensions' websiteAndras Timar
2011-10-31Improved an OSL_FAIL.Stephan Bergmann
2011-10-30Revert "enable localization of extension descriptions in sdext"Andras Timar
This reverts commit 184653370717f99e0cce817822caecde01d20006.
2011-10-30fix en-US only buildAndras Timar
2011-10-30enable localization of extension descriptions in mysqlcAndras Timar
2011-10-30enable localization of extension descriptions in sdextAndras Timar
2011-10-30fix fdo#31966: inserting empty slide when printing handoutsIvan Timofeev
2011-10-30fdo#33047: no data accessible if filename contains "?"Lionel Elie Mamane
2011-10-30factorise multiple SQL_ISRULEOR2 implementations into oneLionel Elie Mamane
2011-10-30add constLionel Elie Mamane
2011-10-30Remove unnecessary variableLionel Elie Mamane
2011-10-30Small fix OParseNode->OSQLParseNodeJulien Nabet
2011-10-30Fix some typo (verion -> version)Julien Nabet
2011-10-30wrong logic in commentLionel Elie Mamane
2011-10-30Typo/spelling in commentLionel Elie Mamane
2011-10-30fillFunctionInfo now also guesses the type of non-function call expressionsLionel Elie Mamane