summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/dlg
Commit message (Collapse)AuthorAgeFilesLines
* fdo##38838 UniString Removal in dbaccessRicardo Montania2012-12-012-10/+10
| | | | | | | Change-Id: I6c4f8e9834fdd78851f5274ce2b141cfb49e6458 Reviewed-on: https://gerrit.libreoffice.org/1208 Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br> Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
* fdo#46808: Missing adaptions to XFolderPicker2Stephan Bergmann2012-11-274-4/+0
| | | | | | | | c988da288ec473a28f61ebb53aa3ff82bab11ef4 "fdo#46808, Adapt ui::dialogs::FolderPicker UNO service to new style" had left some FolderPicker implementations at XFolderPicker, so creating them caused DeploymentExceptions. Change-Id: I3463161f9bb87a69a2777c331eb5b93d487790b0
* AllSettings with LanguageTagEike Rathke2012-11-221-1/+1
| | | | Change-Id: I710ae66e51139662eb442b681fdf9cc9d158551d
* Fix the Windows build breakage by reorganizing svtools headers.Kohei Yoshida2012-11-163-0/+3
| | | | | | | Also removed a fair amount of implicit inline methods to promote use of more forward declaration. Change-Id: I5ad21f0d7abc85281708b7e87f1036b02a053627
* fdo#46808, use service constructor for ucb::SimpleFileAccessNoel Grandin2012-11-151-4/+3
| | | | | | | | I upgraded the service to return XSimpleFileAccess3, since it already implemented that interface, and it's backwards compatible. Change-Id: I40001a46048bd21a23b6a2f58a95376f06fc634b
* fdo#46808, use service constructor for i18n::CharacterClassificationNoel Grandin2012-11-052-19/+17
| | | | Change-Id: I0499ad7de27b1539e97f01ab8aa0ef2d6713ae76
* Use SvTreeListEntries to store child entries.Kohei Yoshida2012-10-291-4/+4
| | | | | | | | This replaces SvTreeEntryList. The only thing to be wary of is that now we use ptr_vector to store child entries, which changes the scheme on the life cycle management of tree entries. Change-Id: I92b6e41ea500bc9b9227259c010887b798194909
* fdo#46808, Adapt ui::dialogs::FolderPicker UNO service to new styleNoel Grandin2012-10-231-8/+2
| | | | | | | Create a merged XFolderPicker2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I4a2c2a8d491a8d5633c19ddcea547f0efe75b91d
* Merge SvLBoxTreeList and SvTreeList.Kohei Yoshida2012-10-191-1/+1
| | | | Change-Id: I318ff6f1009b1aaa7d0bd3abb250f92fb51a21cd
* Merge SvListEntry and SvLBoxEntry into SvTreeListEntry.Kohei Yoshida2012-10-195-43/+43
| | | | Change-Id: I89cfc8c1288c00674fe64e791c149743d377d5ee
* Merged SvTreeListBox and SvLBox.Kohei Yoshida2012-10-111-1/+1
| | | | | | There is no reason to keep SvLBox separate. Change-Id: I0b34aa8f8ca539d4f4f0f9cea9fa9b8faec241e8
* Handle lack of module loading/unloading API when DISABLE_DYNLOADINGTor Lillqvist2012-10-072-1/+5
| | | | | | | | | | | | | | | | There are basicically two classes of cases: 1) Where the code is for obscure historical reasons or what I see as misguided "optimization" split into a more libraries than necessary, and these then are loaded at run-time. Instead, just use direct linking. 2) Where dynamic loading is part of the functionality offered to some upper (scripting etc) layer, or where some system-specific non-LO library is loaded dynamically, as it is not necessarily present on end-user machines. Can't have such in the DISABLE_DYNLOADING case. Change-Id: I9eceac5fb635245def2f4f3320821447bb7cd8c0
* Fixes/improvements on previous commitStephan Bergmann2012-10-044-17/+8
| | | | | | | | | | | | | | | * UUIInteractionHandler still needs to implement XInitialization. * Moved ambiguating InteractionHandler typedef out of the way. * Removed InteractionHandler.createDefault, as it was originally stated that "it is strongly recommended that [the "Parent"] property is supplied." * Added back documentation about Parent and Context. * Simplified some call-sites to directly use XInteractionHandler2. Change-Id: I1029b8f3cf079171c75920cafaaa44b5bbada883
* fdo#46808, Adapt task::InteractionHandler UNO service to new styleNoel Grandin2012-10-045-28/+27
| | | | | | | Since we don't need to expose XInitialisation, we can make the new-style service implement XInteractionHandler2. Change-Id: Ib27beed1c12df17592c6472d6f58c233d2c41558
* probable attempts to find the parent dialogCaolán McNamara2012-10-031-1/+1
| | | | Change-Id: I033f3cd9b42df21c9b63dc03e8e0136971d5dc24
* having two SetPosSizePixel is a blasted nuisanceCaolán McNamara2012-09-281-1/+1
| | | | | | | | | Lets rename the multiargument SetPosSizePixel to setPosSizePixel drop the various using Window::SetPosSizePixel and work towards de-virtualizing SetPosSizePixel/SetPosPixel and SetSizePixel and doing the work in a virtual setPosSizePixel Change-Id: I7057654168001b67becee1791e97f9e9dc01f7b8
* Improvements on previous commitStephan Bergmann2012-09-273-14/+6
| | | | | | | | | | | | | | | | | | | | | * Made XDatabaseContext inherit XDatabaseRegistrations non-optionally, adapted call-sites to just use XDatabaseContext w/o querying. (The previous commit had inadvertantly effectively removed support for XDatabaseRegistrations from the ODatabaseContext implementation, as an optional UNO super-interface does not lead to a super-class in the corresponding C++ class hierarchy, but making the super-interface non-optional fixes that anyway.) * Adapted some more call-sites to just use XDatabaseContext w/o querying. * Added @since tag. * Replaced new uses of comphelper::ComponentContext::getUNOContext with comphelper::getComponentContext (see 03a9f139bd9ea1a4f9096fc982e6b326def58532 "ComponentContext::getUnoContext -> getComponentContext simplification;" I intend to get rid of comphelper/componentcontext.hxx much sooner than of comphelper/processfactory.hxx). Change-Id: I68d09f2dbe651629f79ed21cd40cdb6d6b32c624
* fdo#46808, Adapt sdb::DatabaseContext UNO service to new styleNoel Grandin2012-09-272-3/+6
| | | | | | | | | Create a merged XDatabaseContext interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Quite a few IDL files had to be marked as published for this to work. Change-Id: Ie9a0da88d8c33cc83fc9d2334ff83ab2744c222f
* ComponentContext::getUnoContext -> getComponentContext simplificationStephan Bergmann2012-09-192-5/+6
| | | | | | ...and some further clean-up. Change-Id: If5dce53e382b56390c502d0d0d93fc06cbfe33ea
* Improvement on previous commit, UCB clean upStephan Bergmann2012-09-142-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | * As UCB is only ever initialized with "Local"/"Office", remove this configuration vector completely. The "create" ctor creates an instance internally initialized with those "Local"/"Office" keys. Special (test) code can still instantiate an uninitialized one via plain createInstance. And for backwards compatilibity process startup still ensures to create an initialized instance early, in case there is still code out there (in extensions) that later calls plain createInstance and expects to get the already-initialized (single) instance. * XInitialization is an "implementation detail" of the UniversalContentBroker service, do not expose in XUniversalContentBroker. * ucbhelper/configurationkeys.hxx is no longer needed and is removed. * ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that requires ucbhelper::Content constructors to take explicit XComponentContext arguments now. * The only remaining code in ucbhelper/source/client/contentbroker.cxx is Android-only InitUCBHelper. Is that relevant still? Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
* fdo#46808, Adapt util::NumberFormatter UNO service to new styleNoel Grandin2012-09-031-4/+3
| | | | | | | Create a merged XNumberFormatter2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I57f35cde0a9dbbe91c1d2c3d068cb3a97c7245e3
* -Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann2012-08-318-8/+0
| | | | Change-Id: I55ad905bef36b54fadc245bfb22f687e47d20c3a
* fdo#53887 convert filter value as LIKE pattern only on (NOT) LIKELionel Elie Mamane2012-08-301-2/+6
| | | | Change-Id: I24d1f3af5d428e735a94fc9a69960244d0225513
* fdo#46480 do not double-escape (e.g. date) literals as stringsLionel Elie Mamane2012-08-211-1/+1
| | | | Change-Id: I50d3f1002468d41d5b5882de170699d44fe5223c
* fdo#39468: Translate German comments in dbaccess/Philipp Riemer2012-08-103-4/+4
| | | | | | Follow-up patch of b803fa2579256979bac83f0b193f2c30d524d76b. Change-Id: I86bea8483cc9a9703cc725eaef641c2df5896af0
* cleaned-up commentsPhilipp Riemer2012-08-105-170/+36
| | | | | | | Files were originally touched by b803fa2579256979bac83f0b193f2c30d524d76b. This is just a follow-up patch. Change-Id: I1e35d5e3c3d193bb5dfdb4b743328d8d22466a4d
* translated the german comments in a bunch of source files in dbaccess/sourceDaniel Herde2012-08-095-29/+29
| | | | Change-Id: I2d4b10d96668502a4fe84af70d43bd3abaa5ed23
* hrc cleanup: Remove include guards from src filesThomas Arnhold2012-07-1421-118/+0
| | | | Change-Id: I7d52837f4058bab1bb5a0137788521d12834d519
* warning C4101: unreferenced local variableMichael Stahl2012-07-121-1/+1
| | | | Change-Id: I0648821a4d0c716371bb011df8cd9b21db79ccf5
* some UniString->rtl::OUStringCaolán McNamara2012-07-093-10/+10
| | | | Change-Id: Ie69b30094da25df23a36baca2c7723d6a41f48c3
* removed useless forward declarations of classTakeshi Abe2012-07-056-14/+0
| | | | Change-Id: I13cf52cc4e1cf8d5e2453d7ac4b68cc8c64cd011
* ditch String::CreateFromAsciiCaolán McNamara2012-07-038-35/+35
| | | | Change-Id: I2b482bd323ac510629c5ee31868010b7cd6ce691
* hrc cleanup: Remove unused hrc filesThomas Arnhold2012-07-031-86/+0
| | | | Change-Id: I16d83ca3ea0e01f2c0f4115db18b97958e51afde
* hrc cleanup: Remove include guardsThomas Arnhold2012-07-025-23/+0
| | | | | | Also add some missing include guards. Change-Id: I320a3c017ca65d34f2cd516849bcde3dec9b33f1
* hrc cleanup: Remove unused definesThomas Arnhold2012-07-021-1/+0
| | | | Change-Id: Iaa7da7745fc01544d9a503b313479b2450810524
* Remove unused definesThomas Arnhold2012-07-011-8/+0
| | | | Change-Id: Ic36b131ee9964a6671f7f41e1cad1631c43ad565
* hrc cleanup: Remove unused resource definitionsThomas Arnhold2012-07-011-3/+0
| | | | Change-Id: Ie3a3a65bfb628195940105d7261464989e9af3fa
* Remove unused definesThomas Arnhold2012-07-011-1/+0
| | | | Change-Id: I45e1618dcff920b63b7e21ba9e842eed684114d7
* fdo#51497 Show output from SELECT statements in Execute SQL dialog.Phil Hart2012-07-013-12/+87
| | | | | | | | These changes allow the user to optionally display the output from SQL SELECT statements in the "Execute SQL Statement" dialog. Change-Id: I9209a9e3b5ed100a88fa467078deb9f38c571d42
* Remove UNO includes commentsThomas Arnhold2012-06-295-15/+0
| | | | Change-Id: I48e193322967fb75e93eaf81e9e2110d3056f92a
* Reduce newline bloat at eofThomas Arnhold2012-06-272-4/+0
| | | | Change-Id: I494ceee07d6825f9466cab810742d7f85291fe14
* hrc cleanup: Remove unused definesThomas Arnhold2012-06-216-37/+0
| | | | | | | | | | | All of those defines (should) not be used at any point in the code. False positives may exist, because some macro names are getting generated by some template/macro foo. This is the version which compiled fine for me. Also there are many commented out lines removed. Change-Id: I6394024682e4ab3691eb72707a9363d41ba31df8
* Remove dead codeThomas Arnhold2012-06-151-10/+0
| | | | Change-Id: I65fe534a712ddcdd01b1f393a8244f603e891dc8
* re-base on ALv2 code.Michael Meeks2012-06-14105-2443/+1534
|
* reduce use of UniString ctor from null-terminated unicodearrayCaolán McNamara2012-06-134-7/+6
| | | | Change-Id: I98361309ada084d8f78517ce88f210d785f59cc0
* remove EraseLeadingChars and EraseTrailingCharsCaolán McNamara2012-06-111-2/+2
| | | | Change-Id: Ib9797fe97cd008cc6508ce8cec47dc5373416892
* Remove superfluous empty lines on topThomas Arnhold2012-06-091-2/+0
| | | | | | More than two lines are removed for readability. Change-Id: Ibff6cf68d7c512e240a54065b54a225bb23a782b
* fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin2012-06-061-4/+6
| | | | | | | Update calls to factories to use new SimpleFileAccess::create method Change-Id: Ie5b0696fe2228a9033b19969245a53c21a61aa14 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
* targetted SAL_N_ELEMENTS reversion.Michael Meeks2012-05-317-10/+9
| | | | Change-Id: I181c5b5dd24836ff0398aa5ed03915c2c7c55183
* removed unused member fieldsTakeshi Abe2012-05-241-2/+0
| | | | Change-Id: If89fd07ad78bca303a9bf8484f08cba08afffe8d