summaryrefslogtreecommitdiff
path: root/sfx2
AgeCommit message (Collapse)Author
2013-12-17Adapt all (non-extension, SharedLibrary) .components to environment="..."Stephan Bergmann
Change-Id: I56f38bd786f3a026cb2908f28540dc9c4003af83
2013-12-17remove unnecessary double calls to OUString constructorNoel Grandin
Change-Id: Ib2690e3ec9987b97363687b61fe8ddae4ace9058
2013-12-16uiconfig is a l10n-relevant targetBjoern Michaelsen
Change-Id: I8a2ca73c02fd6b04ce60e7701c51d2362ef7ec06
2013-12-16convert help bookmark dialog to .uiCaolán McNamara
Change-Id: I7831bc63f66ab7fe30f5648efc2f733c6bd90d0e
2013-12-13thumbnails: Create nice antialiased thumbnails when saving ODF.Jan Holesovsky
Change-Id: I3dc3289b4ac3423b3a5006dbb7ee895bc25ec50a
2013-12-13startcenter: A little more space between the picture & welcome text.Jan Holesovsky
Change-Id: I093fecd1fb5c052c85cf84f131845258a5fd2284
2013-12-13startcenter: The welcome text was too long, split it to 2 lines.Jan Holesovsky
Change-Id: I23d6a4bf8d9c3b2531dd95e4ea293ce7225bf8f1
2013-12-13Targetted text updates, with seasonable changes before l10n freeze.Michael Meeks
Change-Id: If37ef9f68711da3a0aa9a3ba59b111a8a23421df
2013-12-13startcenter: Move the 'Create' under the separator & add a colon.Jan Holesovsky
Change-Id: Ie8a1ce8628fa0f31ae6d6a3f1303342c145e33aa
2013-12-13startcenter: Tooltip should show the full URL.Jan Holesovsky
Change-Id: Ia8e071ebe00fb8c72973614077e778aef55fb1ab
2013-12-13startcenter: Implement mouse over effect.Jan Holesovsky
Change-Id: I9beea6119dbb1c12ff053e5776f15d40a3389a8b
2013-12-13fdo#72650: Get thumbnails only from the local documents.Jan Holesovsky
No point in connecting to eg. ftp to get a thumbnail ;-) Change-Id: I017c59196c294242366f2254eeacd9056455c1bc
2013-12-13Small cleanup of initialization.Jan Holesovsky
Change-Id: I62c0479414ab6748039498e1bc2b3bc9d7c4ef05
2013-12-13startcenter: Full thumbnail size (256px), upscale if necessary.Jan Holesovsky
Change-Id: I8ae72249853a03b1dfca0ecd10eef47e9aa7cbfe
2013-12-13startcenter: Make the default icons appear as on a piece of paper.Jan Holesovsky
So that the frame around the picture is similar to the previews; otherwise looks disturbing. Change-Id: Ie7f973e15c29a34c0f368b5e0f5a152d5cead39f
2013-12-13startcenter: Bigger & nicer document icons for recent documents.Jan Holesovsky
Change-Id: If61aefc1d27d7bca2e8242b404db685a503bcf0e
2013-12-13template view: Simplify code.Jan Holesovsky
Change-Id: I48fc6fa86a9953db87e59a83714d4d7b0ff8d64a
2013-12-13startcenter: Smaller frame around the entire start center area (6 -> 1px).Jan Holesovsky
Based on Mirek's suggestion; looks better. Change-Id: I3468450ee4c8ba27cd26a40c7ed11f0b4df9c42d
2013-12-13Fixed the update to working copy and back after (cancel) checkout: fdo#64533Cédric Bosdonnat
After Checkout, simply set medium name and update the medium: at least we are sure it works in more situations than the other function we used. After cancel checkout, call SID_RELOAD to actually revert any local change. Change-Id: I3dc296a74726770c4f47d9653c382108f7baccad
2013-12-12startcenter: Update the button descriptions to the UX team decision.Jan Holesovsky
Change-Id: Ie0813e8faa1cc97aa77fc89659b829226d0e5736
2013-12-12simplify - use OUString::startsWith where possibleNoel Grandin
Convert code like if( !aStr.isEmpty() && aStr[0] == 'x' ) to if( aStr.startsWith("x") ) Change-Id: Iabc3a44ed3be2d29eed876e0eeef212ccd271edf
2013-12-12Do not use C++-UNO internal static_type functions in client codeStephan Bergmann
...use cppu::UnoType instead. Change-Id: I507914b30ef8acda910ee4ecc0589fd328eb6f31
2013-12-12Don't hold css::uno::Type instances by pointerStephan Bergmann
...in comphelper::PropertyMapEntry and SfxItemPropertyMapEntry. And as the arrays of such need to be initialized dynamically anyway, also change their name members to proper OUStrings while at it. Plus some const clean-up. Change-Id: I67d4d7b5773fb020605f369daf39528bec930606
2013-12-11Revert "Don't hold css::uno::Type instances by pointer"Stephan Bergmann
This reverts commit 90f91088d238469b4a2262c91de3117ba40f5bde for now: Ach, old GCC doesn't like plain string literals to initialize members of OUString type... Change-Id: I50563a00406259bb5d41831e2a2796762450d097
2013-12-11Don't hold css::uno::Type instances by pointerStephan Bergmann
...in comphelper::PropertyMapEntry and SfxItemPropertyMapEntry. And as the arrays of such need to be initialized dynamically anyway, also change their name members to proper OUStrings while at it. Plus some const clean-up. Change-Id: I67d4d7b5773fb020605f369daf39528bec930606
2013-12-10svl: remove SfxDateTimeItem, which is actually unusedMichael Stahl
... since 2f44516d6c3fce6ebe372214ce4bfa11875bd3d1 Change-Id: I25905a69464a43e12fcbb4770c8b0e171ab3271b
2013-12-10Fix another string conversion regression.Matúš Kukan
Change-Id: I8297fd60b7db057504260a2304ccce6358bb9776
2013-12-10fdo#72037: Fix comparison of indexOf values after string conversion.Matúš Kukan
regression from 9daa4f31944e1b9510b092ab9fdd433984c85d10 Change-Id: I369a9a342984084f5269bcd9d829c42de9ac4a23
2013-12-09fix equalsAscii conversion. Noticed in fdo#72391Noel Grandin
In commit 363cc397172f2b0a94d9c4dc44fc8d95072795a3 "convert equalsAsciiL calls to startWith calls where possible" I incorrectly converted equalsAsciiL calls to startsWith calls. This commit fixes those places to use the == OUString operator. Change-Id: If76993baf73e3d8fb3bbcf6e8314e59fdc1207b6
2013-12-06Clean up includes of comphelper/stl_types.hxxStephan Bergmann
Change-Id: I00a8e794189d17ad91a90beb9ce6cb89b7bab2aa
2013-12-06convert search dialog to .uiCaolán McNamara
Change-Id: I737da11ed6978edf824f00dfb3dfc29c2c5416ed
2013-12-06Get rid of DECLARE_STL_MAPStephan Bergmann
Change-Id: Ifbda934a89087fcc1c031978d3e5b5783722b328
2013-12-05Start center: Use the welcome text that was agreed by UX / design team.Jan Holesovsky
Change-Id: I1af05f68ef7c2a10209f138e59a9245d3d1ac081
2013-12-05fdo#68724: sw: fix crash on Insert->File with Hybrid PDFMichael Stahl
This is an unfortunate combination of 2 special cases: - the Hybrid PDF has its own XFilter implementation to extract the embedded ODF document - Writer needs to create a SwReader with SwPaM for Insert Since the PDF XFilter uses a special service in sfx2 to implement the import, handling this requires a new method in SfxObjectShell that calls back into Writer to create the properly setup SwReader. Change-Id: Ie85f3bfa322bfe883c479e1cb198a8bf0cbbac23
2013-12-04sfx2: SfxItemPtrMap is used only in shell.cxxMichael Stahl
Change-Id: I9f76a114fcdf761ddaaf40666e4330d20ca72b98
2013-12-04SfxDispatcher: move implementation details out of header fileMichael Stahl
Change-Id: Ia831da45c00554086dc692997130688c0b3e28f5
2013-12-02Drop duplicate #includeTakeshi Abe
Change-Id: Ife8ebbb5e46704c5d2ff46cc345b4ed926e7dc12
2013-11-30make some .ui strings translatableAndras Timar
Change-Id: I3e2a93ac7521b4b484a96da22efac0b4cb52b333
2013-11-27Unwind occurrences of deprecated sal_sChar, sal_uCharStephan Bergmann
Change-Id: I76be464200d486efef9c8a7e957c310c9adae3b8
2013-11-26adapt sfx2 UndoManager test to renaming from "click" to "press"Michael Stahl
RID_STR_ACC_ACTION_CLICK in efb23f29983f87104a684e7fab00b84fc59d131d Change-Id: If684816602db38fa87b6272c0491ab2ac910aece
2013-11-26remove executable bits from .java filesMichael Stahl
Change-Id: Id36b1d56553a413ab9b4d82fe6f65185f4f6fc00
2013-11-26add accessibility names to .uiCaolán McNamara
Change-Id: I3453e3c66de730e60843d655e094b7c3247fad1b
2013-11-26Integrate branch of IAccessible2Steve Yin
Change-Id: I7d6764cfc86b7b8846c0908278ae10a68c0a14f5
2013-11-25Fix different typos for "unknown"Julien Nabet
Change-Id: Ib2ee00d4e9f4c6c05d090adfcd5fb791fcbca72c
2013-11-24script seems long obsoleteBjoern Michaelsen
Change-Id: Icac42ae8cf3deec86d60efddc5760cfb9b2acfba
2013-11-23Lenght -> LengthJulien Nabet
Change-Id: Ic338484627a1b74fba2d4d0794f8865290177464
2013-11-23fixed typo in commentChr. Rossmanith
Change-Id: I718246ae03a84a2add9209be023f07c17cc40ca5
2013-11-22remove unnecessary RTL_CONSTASCII_STRINGPARAMNoel Grandin
A final pass through the code, converting code to use the new OUString and OString methods that can detect string literals. Change-Id: Ifa6382335e5650a1c67e52006b26354e0692c710
2013-11-22some small RTL_CONSTASCII_STRINGPARAM cleanupsNoel Grandin
Change-Id: Ia701b174288647d3451fbb487d46882452ded821
2013-11-21remove unnecessary RTL_CONSTASCII_STRINGPARAM in OUString::equalsLNoel Grandin
Convert code like this: if (aStr.equalsL(RTL_CONSTASCII_STRINGPARAM("rem"))) to: if (aStr == "rem") which compiles down to the same code. Change-Id: I2dfa0f0a457c465948ecf720daaa45ff29d69de9