summaryrefslogtreecommitdiffstats
path: root/comphelper
diff options
context:
space:
mode:
authorDaniel Rentz <dr@openoffice.org>2010-04-06 13:28:48 +0200
committerDaniel Rentz <dr@openoffice.org>2010-04-06 13:28:48 +0200
commitaf5c3ad88ab4f93e825d9b6931727d36d87df05e (patch)
tree7f74c06de436b08f3a9922df6147baa59391be37 /comphelper
parenttl78: #i110383# support password to modify (diff)
downloadcore-af5c3ad88ab4f93e825d9b6931727d36d87df05e.tar.gz
core-af5c3ad88ab4f93e825d9b6931727d36d87df05e.zip
tl78: compiler warning
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/docpasswordrequest.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/comphelper/source/misc/docpasswordrequest.cxx b/comphelper/source/misc/docpasswordrequest.cxx
index beed6d7342b3..585868822c18 100644
--- a/comphelper/source/misc/docpasswordrequest.cxx
+++ b/comphelper/source/misc/docpasswordrequest.cxx
@@ -84,14 +84,13 @@ public:
virtual void SAL_CALL setPasswordToModify( const OUString& rPass ) throw( RuntimeException ) { maModifyPassword = rPass; }
virtual OUString SAL_CALL getPasswordToModify() throw( RuntimeException ) { return maModifyPassword; }
- virtual void SAL_CALL setRecommendReadOnly( const sal_Bool bReadOnly ) throw( RuntimeException ) { mbReadOnly = bReadOnly; }
+ virtual void SAL_CALL setRecommendReadOnly( sal_Bool bReadOnly ) throw( RuntimeException ) { mbReadOnly = bReadOnly; }
virtual sal_Bool SAL_CALL getRecommendReadOnly() throw( RuntimeException ) { return mbReadOnly; }
private:
OUString maPassword;
OUString maModifyPassword;
sal_Bool mbReadOnly;
-
sal_Bool mbSelected;
};