summaryrefslogtreecommitdiffstats
path: root/include/dbaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-10 19:49:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-12 20:22:23 +0200
commit5f7cf9ccba25a94c275ec67936dc29f0adb4129a (patch)
tree2d2063dd0cfd2b1e2946b66db0c70b05fb6f7903 /include/dbaccess
parentdon't need to enforce sort in the baseclass (diff)
downloadcore-5f7cf9ccba25a94c275ec67936dc29f0adb4129a.tar.gz
core-5f7cf9ccba25a94c275ec67936dc29f0adb4129a.zip
use InterimDBTreeListBox
Change-Id: I2f345f1a4fd6c7a4dc7be831f85a9f728ee477ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100496 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/dbaccess')
-rw-r--r--include/dbaccess/IController.hxx6
-rw-r--r--include/dbaccess/dataview.hxx2
-rw-r--r--include/dbaccess/genericcontroller.hxx1
3 files changed, 0 insertions, 9 deletions
diff --git a/include/dbaccess/IController.hxx b/include/dbaccess/IController.hxx
index 82e8c5603b16..fd1b2df8b485 100644
--- a/include/dbaccess/IController.hxx
+++ b/include/dbaccess/IController.hxx
@@ -88,12 +88,6 @@ namespace dbaui
*/
virtual bool isCommandEnabled( const OUString& _rCompleteCommandURL ) const = 0;
- /** notifyHiContrastChanged will be called when the hicontrast mode changed.
- @param _bHiContrast
- <TRUE/> when in hicontrast mode.
- */
- virtual void notifyHiContrastChanged() = 0;
-
/** checks if the selected data source is read only
@return
<TRUE/> if read only, otherwise <FALSE/>
diff --git a/include/dbaccess/dataview.hxx b/include/dbaccess/dataview.hxx
index b599b8c513c5..bd2b6146b4d8 100644
--- a/include/dbaccess/dataview.hxx
+++ b/include/dbaccess/dataview.hxx
@@ -38,7 +38,6 @@ namespace svt {
class AcceleratorExecute;
}
-class DataChangedEvent;
class FixedLine;
class NotifyEvent;
namespace tools { class Rectangle; }
@@ -70,7 +69,6 @@ namespace dbaui
// window overridables
virtual bool PreNotify( NotifyEvent& rNEvt ) override;
virtual void StateChanged( StateChangedType nStateChange ) override;
- virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
IController& getCommandController() const { return *m_xController; }
diff --git a/include/dbaccess/genericcontroller.hxx b/include/dbaccess/genericcontroller.hxx
index c90ad028908e..4ce04f913381 100644
--- a/include/dbaccess/genericcontroller.hxx
+++ b/include/dbaccess/genericcontroller.hxx
@@ -415,7 +415,6 @@ namespace dbaui
virtual void executeChecked(sal_uInt16 _nCommandId, const css::uno::Sequence< css::beans::PropertyValue>& aArgs) override;
virtual bool isCommandEnabled(sal_uInt16 _nCommandId) const override;
virtual bool isCommandEnabled(const OUString& _rCompleteCommandURL) const override;
- virtual void notifyHiContrastChanged() override;
virtual bool isDataSourceReadOnly() const override;
virtual css::uno::Reference< css::frame::XController > getXController() override;
virtual bool interceptUserInput( const NotifyEvent& _rEvent ) override;