From 6c9917c7a74e1c14f1c60ad40b96470b6ef08936 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 4 Sep 2019 16:08:36 +0200 Subject: loplugin:constmethod in dbaccess Change-Id: I3bb4784e1a2d828eca30f255a9c9bb4248309b81 Reviewed-on: https://gerrit.libreoffice.org/78603 Tested-by: Jenkins Reviewed-by: Noel Grandin --- dbaccess/source/ui/inc/QueryDesignView.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dbaccess/source/ui/inc/QueryDesignView.hxx') diff --git a/dbaccess/source/ui/inc/QueryDesignView.hxx b/dbaccess/source/ui/inc/QueryDesignView.hxx index 661f2bb722a1..fefd6cc9d311 100644 --- a/dbaccess/source/ui/inc/QueryDesignView.hxx +++ b/dbaccess/source/ui/inc/QueryDesignView.hxx @@ -77,9 +77,9 @@ namespace dbaui virtual ~OQueryDesignView() override; virtual void dispose() override; - bool isCutAllowed(); - bool isPasteAllowed(); - bool isCopyAllowed(); + bool isCutAllowed() const; + bool isPasteAllowed() const; + bool isCopyAllowed() const; void copy(); void cut(); void paste(); -- cgit