summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/app
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused method & remove header include by using forward declaration.Kohei Yoshida2012-11-291-0/+1
| | | | | | Also, SvViewDataEntry has lost one friend. Change-Id: Icf6d4127de38fed485cd260edae97748b1f78ede
* Fix various build breaks.Kohei Yoshida2012-11-281-1/+1
| | | | Change-Id: Ie33a4a02f9820e0d52ca3f17c6b410ebe1e6e8f0
* some i18n wrappers with LanguageTagEike Rathke2012-11-231-1/+1
| | | | Change-Id: I2ceaa3159e8669c2c569fa8559c1e061dcad399d
* Fix the Windows build breakage by reorganizing svtools headers.Kohei Yoshida2012-11-162-0/+2
| | | | | | | Also removed a fair amount of implicit inline methods to promote use of more forward declaration. Change-Id: I5ad21f0d7abc85281708b7e87f1036b02a053627
* Merge SvLBoxTreeList and SvTreeList.Kohei Yoshida2012-10-191-2/+2
| | | | Change-Id: I318ff6f1009b1aaa7d0bd3abb250f92fb51a21cd
* Merge SvListEntry and SvLBoxEntry into SvTreeListEntry.Kohei Yoshida2012-10-198-74/+74
| | | | Change-Id: I89cfc8c1288c00674fe64e791c149743d377d5ee
* Merged SvTreeListBox and SvLBox.Kohei Yoshida2012-10-114-4/+4
| | | | | | There is no reason to keep SvLBox separate. Change-Id: I0b34aa8f8ca539d4f4f0f9cea9fa9b8faec241e8
* replace remaining InterlockedCount() with inlined versionNorbert Thiebaud2012-09-251-1/+1
| | | | | | | Change-Id: Ifcfa48fc87f905a91470a5b0fd597b02f220784c Reviewed-on: https://gerrit.libreoffice.org/671 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
* ComponentContext::getUnoContext -> getComponentContext simplificationStephan Bergmann2012-09-191-2/+2
| | | | | | ...and some further clean-up. Change-Id: If5dce53e382b56390c502d0d0d93fc06cbfe33ea
* fdo#46808, Adapt ModuleUIConfigurationManagerSupplier UNO service to new styleNoel Grandin2012-09-031-6/+3
| | | | Change-Id: I58b17349474b974edd24aa17ec08ffa848a92ae9
* hrc cleanup: Remove include guards from src filesThomas Arnhold2012-07-141-12/+0
| | | | Change-Id: I7d52837f4058bab1bb5a0137788521d12834d519
* fix typoThomas Arnhold2012-07-141-2/+1
| | | | Change-Id: I39ac02cfc84be133855594c89cf5a5f1db4c7fc6
* some UniString->rtl::OUStringCaolán McNamara2012-07-091-2/+2
| | | | Change-Id: Ie69b30094da25df23a36baca2c7723d6a41f48c3
* removed useless forward declarations of classTakeshi Abe2012-07-053-4/+0
| | | | Change-Id: I13cf52cc4e1cf8d5e2453d7ac4b68cc8c64cd011
* hrc cleanup: Remove include guardsThomas Arnhold2012-07-021-3/+0
| | | | | | Also add some missing include guards. Change-Id: I320a3c017ca65d34f2cd516849bcde3dec9b33f1
* Remove UNO includes commentsThomas Arnhold2012-06-296-13/+0
| | | | Change-Id: I48e193322967fb75e93eaf81e9e2110d3056f92a
* hrc cleanup: Remove unused definesThomas Arnhold2012-06-211-1/+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
* hrc cleanup: Remove completely unused RIDsThomas Arnhold2012-06-151-1/+0
| | | | | | | | | | | These RID definitions aren't used at any other point. So remove them. Unused START and END definitions were commented out for documentation purpose. All definitions in basctl/source/basicide/tbxctl.hrc were unused, so I removed this file. Change-Id: I4713188a12b9da912b2a91b85ea4e54ca1aeb994
* re-base on ALv2 code.Michael Meeks2012-06-1422-483/+315
|
* targetted SAL_N_ELEMENTS reversion.Michael Meeks2012-05-313-4/+4
| | | | Change-Id: I181c5b5dd24836ff0398aa5ed03915c2c7c55183
* catch by const referenceTakeshi Abe2012-05-171-1/+1
| | | | Change-Id: I80a26483c4ecd099a1cfe76bdac1e97b947ef104
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-3/+3
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* removed duplicate includes in dbaccessTakeshi Abe2012-03-306-12/+0
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-141-0/+3
| | | | | | | | | | | | | | ...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
* Clean up ODocumentInfoPreviewStephan Bergmann2012-03-131-1/+1
|
* replace usage of OUString::replace*AsciiL() with string literal overloadsLuboš Luňák2012-03-121-3/+1
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-013-3/+3
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* Fix typos in commentsElton Chung2012-02-181-1/+1
|
* Various string function clean upStephan Bergmann2012-02-151-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
* update unused listCaolán McNamara2012-02-081-2/+0
|
* these OnInvalidateClipboard don't have to be LINKsCaolán McNamara2012-01-132-4/+4
|
* Removed unnecessary tools includes.Marcel Metz2012-01-052-2/+0
|
* Clean non English strings in the codeLior Kaplan2012-01-021-1/+0
| | | | we do translation differently.
* Fix for fdo43460 Part XII getLength() to isEmpty()Olivier Hallot2011-12-215-15/+15
| | | | | | Part XII Module dbaccess
* ByteString->rtl::OString[Buffer]Caolán McNamara2011-12-141-2/+2
|
* sfx2::FileDialogHelper: refactor construction:Michael Stahl2011-12-031-2/+3
| | | | | | | | | | There are currently 2 different ways to specify what kind of file dialog should be created: the nDialogType and nFlags ctor parameters. Simplify that by using the nDialogType for the API specified variety, and the nFlags only for options that cannot be specified by the API. This allows to get rid of 3 constructors, and the following constants: WB_OPEN, WB_SAVEAS, WB_PASSWORD, SFXWB_PASSWORD, SFXWB_SHOWSTYLES
* sfx2::FileDialogHelper ignores WB_3DLOOK, WB_STDMODALMichael Stahl2011-12-031-1/+1
|
* remove unused #include sfx2/filedlghelper.hxxMichael Stahl2011-12-031-1/+0
|
* remove include of pch header in dbaccessNorbert Thiebaud2011-11-279-18/+0
|
* move CloseVeto from dbaccess to unotoolsMichael Stahl2011-10-313-255/+2
|
* add modelinesCaolán McNamara2011-09-292-0/+6
|
* just silence the auto_ptr deprecations in isolationCaolán McNamara2011-09-224-0/+35
|
* No more FORWARD_DECLARE_INTERFACE in dbaccess.Kohei Yoshida2011-08-111-3/+9
|
* Merge commit 'libreoffice-3.4.2.3'Jan Holesovsky2011-07-281-1/+2
|\
| * Don't crash when selecting target to db document, fdo#36545.Jan Holesovsky2011-07-011-1/+2
| | | | | | | | Signed-off-by: Michael Meeks <michael.meeks@novell.com>
* | revert to dbaccess gbuildization from master mostlyBjoern Michaelsen2011-07-2310-10/+10
| | | | | | | | | | | | * only add JunitTest_dbaccess_complex, which was missing on master * disable complex.dbaccess.DatabaseDocument in JunitTest_dbaccess_complex for now as it fails
* | Merge branch 'master' into feature/gnumake4Bjoern Michaelsen2011-06-2021-736/+219
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dbaccess/AllLangResTarget_adabasui.mk dbaccess/AllLangResTarget_dba.mk dbaccess/AllLangResTarget_dbmm.mk dbaccess/AllLangResTarget_sdbt.mk dbaccess/Executable_odbcconfig.mk dbaccess/JunitTest_dbaccess_unoapi.mk dbaccess/Library_adabasui.mk dbaccess/Library_dba.mk dbaccess/Library_dbaxml.mk dbaccess/Library_dbmm.mk dbaccess/Library_sdbt.mk dbaccess/Makefile dbaccess/Module_dbaccess.mk dbaccess/Package_inc.mk dbaccess/Package_uiconfig.mk dbaccess/prj/build.lst dbaccess/qa/unoapi/Test.java dbaccess/source/core/api/CacheSet.hxx dbaccess/source/core/dataaccess/SharedConnection.hxx dbaccess/source/core/dataaccess/connection.cxx dbaccess/source/filter/xml/xmlAutoStyle.cxx dbaccess/source/filter/xml/xmlColumn.cxx dbaccess/source/filter/xml/xmlComponent.cxx dbaccess/source/filter/xml/xmlConnectionData.cxx dbaccess/source/filter/xml/xmlConnectionResource.cxx dbaccess/source/filter/xml/xmlDataSource.cxx dbaccess/source/filter/xml/xmlDataSourceInfo.cxx dbaccess/source/filter/xml/xmlDataSourceSetting.cxx dbaccess/source/filter/xml/xmlDataSourceSettings.cxx dbaccess/source/filter/xml/xmlDatabaseDescription.cxx dbaccess/source/filter/xml/xmlDocuments.cxx dbaccess/source/filter/xml/xmlFileBasedDatabase.cxx dbaccess/source/filter/xml/xmlHelper.cxx dbaccess/source/filter/xml/xmlHierarchyCollection.cxx dbaccess/source/filter/xml/xmlLogin.cxx dbaccess/source/filter/xml/xmlQuery.cxx dbaccess/source/filter/xml/xmlServerDatabase.cxx dbaccess/source/filter/xml/xmlTable.cxx dbaccess/source/filter/xml/xmlTableFilterList.cxx dbaccess/source/filter/xml/xmlTableFilterPattern.cxx dbaccess/source/ui/app/AppDetailPageHelper.cxx dbaccess/source/ui/app/AppDetailView.cxx dbaccess/source/ui/app/AppIconControl.cxx dbaccess/source/ui/app/AppSwapWindow.cxx dbaccess/source/ui/app/AppTitleWindow.cxx dbaccess/source/ui/app/AppView.cxx dbaccess/source/ui/browser/AsyncronousLink.cxx dbaccess/source/ui/browser/genericcontroller.cxx dbaccess/source/ui/control/ColumnControlWindow.cxx dbaccess/source/ui/control/RelationControl.cxx dbaccess/source/ui/control/SqlNameEdit.cxx dbaccess/source/ui/control/TableGrantCtrl.cxx dbaccess/source/ui/control/VertSplitView.cxx dbaccess/source/ui/control/toolboxcontroller.cxx dbaccess/source/ui/dlg/CollectionView.cxx dbaccess/source/ui/dlg/ConnectionHelper.cxx dbaccess/source/ui/dlg/ConnectionPageSetup.cxx dbaccess/source/ui/dlg/DBSetupConnectionPages.cxx dbaccess/source/ui/dlg/RelationDlg.cxx dbaccess/source/ui/dlg/TextConnectionHelper.cxx dbaccess/source/ui/dlg/detailpages.cxx dbaccess/source/ui/dlg/dlgsize.cxx dbaccess/source/ui/dlg/queryorder.cxx dbaccess/source/ui/dlg/tablespage.cxx dbaccess/source/ui/misc/TableCopyHelper.cxx dbaccess/source/ui/misc/ToolBoxHelper.cxx dbaccess/source/ui/misc/WExtendPages.cxx dbaccess/source/ui/misc/WNameMatch.cxx dbaccess/source/ui/misc/WTypeSelect.cxx dbaccess/source/ui/querydesign/ConnectionLine.cxx dbaccess/source/ui/querydesign/ConnectionLineAccess.cxx dbaccess/source/ui/querydesign/ConnectionLineData.cxx dbaccess/source/ui/querydesign/JAccess.cxx dbaccess/source/ui/querydesign/JoinController.cxx dbaccess/source/ui/querydesign/JoinDesignView.cxx dbaccess/source/ui/querydesign/JoinExchange.cxx dbaccess/source/ui/querydesign/JoinTableView.cxx dbaccess/source/ui/querydesign/QTableConnection.cxx dbaccess/source/ui/querydesign/QTableConnectionData.cxx dbaccess/source/ui/querydesign/QTableWindow.cxx dbaccess/source/ui/querydesign/QTableWindowData.cxx dbaccess/source/ui/querydesign/QueryDesignView.cxx dbaccess/source/ui/querydesign/QueryTabConnUndoAction.cxx dbaccess/source/ui/querydesign/QueryTabWinUndoAct.cxx dbaccess/source/ui/querydesign/QueryTextView.cxx dbaccess/source/ui/querydesign/QueryViewSwitch.cxx dbaccess/source/ui/querydesign/SelectionBrowseBox.cxx dbaccess/source/ui/querydesign/TableConnection.cxx dbaccess/source/ui/querydesign/TableConnectionData.cxx dbaccess/source/ui/querydesign/TableWindow.cxx dbaccess/source/ui/querydesign/TableWindowAccess.cxx dbaccess/source/ui/querydesign/TableWindowData.cxx dbaccess/source/ui/querydesign/TableWindowListBox.cxx dbaccess/source/ui/querydesign/TableWindowTitle.cxx dbaccess/source/ui/querydesign/querydlg.cxx dbaccess/source/ui/querydesign/queryview.cxx dbaccess/source/ui/relationdesign/RTableConnection.cxx dbaccess/source/ui/relationdesign/RelationDesignView.cxx dbaccess/source/ui/relationdesign/RelationTableView.cxx dbaccess/source/ui/tabledesign/FieldDescGenWin.cxx dbaccess/source/ui/tabledesign/FieldDescriptions.cxx dbaccess/source/ui/tabledesign/TEditControl.cxx dbaccess/source/ui/tabledesign/TableDesignHelpBar.cxx dbaccess/source/ui/tabledesign/TableDesignView.cxx dbaccess/source/ui/tabledesign/TableFieldControl.cxx dbaccess/source/ui/tabledesign/TableRow.cxx dbaccess/source/ui/tabledesign/TableRowExchange.cxx dbaccess/source/ui/tabledesign/TableUndo.cxx dbaccess/source/ui/uno/ColumnControl.cxx dbaccess/source/ui/uno/ColumnPeer.cxx reportdesign/AllLangResTarget_rpt.mk reportdesign/AllLangResTarget_rptui.mk reportdesign/Library_rpt.mk reportdesign/Library_rptui.mk reportdesign/Library_rptxml.mk reportdesign/Module_reportdesign.mk reportdesign/Package_uiconfig.mk reportdesign/Package_xml.mk reportdesign/prj/build.lst reportdesign/prj/makefile.mk
| * \ Merge remote-tracking branch 'origin/integration/dev300_m106'Jan Holesovsky2011-05-276-44/+324
| |\ \ | | | | | | | | | | | | | | | | Conflicts: dbaccess/source/ui/app/makefile.mk
| | * | Remove hc paramater from aImageProvider.getFolderImageThorsten Behrens2011-05-231-1/+1
| | | | | | | | | | | | | | | | This fixes the m106 merge.
| | * | Merge commit 'ooo/DEV300_m106' into libreoffice-3-4Jan Holesovsky2011-04-227-45/+326
| | |\ \ | | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: dbaccess/source/core/api/CacheSet.cxx dbaccess/source/core/api/KeySet.cxx dbaccess/source/core/api/KeySet.hxx dbaccess/source/core/api/OptimisticSet.hxx dbaccess/source/core/api/RowSet.cxx dbaccess/source/core/api/RowSetCache.cxx dbaccess/source/core/api/query.cxx dbaccess/source/core/dataaccess/SharedConnection.cxx dbaccess/source/ui/app/AppController.cxx dbaccess/source/ui/app/makefile.mk dbaccess/source/ui/control/FieldDescControl.cxx dbaccess/source/ui/querydesign/query.src dbaccess/source/ui/tabledesign/TEditControl.cxx reportdesign/source/ui/report/ReportController.cxx reportdesign/source/ui/report/ReportSection.cxx reportdesign/source/ui/report/SectionWindow.cxx reportdesign/source/ui/report/StartMarker.cxx reportdesign/source/ui/report/ViewsWindow.cxx