diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-27 10:50:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-27 11:12:41 +0100 |
commit | 207313157688d79cb0d53e920a03423c81a7bc23 (patch) | |
tree | 3a736cb0b7362fb3fff156b36fea1f76542a70ec /svx | |
parent | 70115479f1775788ffedf6e0436b09d539491c89 (diff) |
Resolves: fdo#39825 Make detection of certificate folder ui-configurable
Display in the (unix) options gui the NSS cert dir that has been auto-detected
for use with digital signatures. Show the other detected possibilities and
allow it to be overridden.
The autodetection should basically work out of the box, but if there's some
bustage at least the UI can be used to sort it out and/or let developers
debug it.
This removes the need for the horrible MOZILLA_CERTIFICATE_FOLDER hack,
though that's still supported.
Diffstat (limited to 'svx')
-rw-r--r-- | svx/inc/svx/simptabl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/inc/svx/simptabl.hxx b/svx/inc/svx/simptabl.hxx index 9e7a0692f1fe..b12314f3da6e 100644 --- a/svx/inc/svx/simptabl.hxx +++ b/svx/inc/svx/simptabl.hxx @@ -97,8 +97,6 @@ protected: virtual void Command( const CommandEvent& rCEvt ); virtual StringCompare ColCompare(SvLBoxEntry*,SvLBoxEntry*); - HeaderBar* GetTheHeaderBar(){return &aHeaderBar;} - public: SvxSimpleTable(SvxSimpleTableContainer& rParent, WinBits nBits = WB_BORDER); @@ -156,6 +154,8 @@ public: const Link& GetHeaderBarDblClickHdl() const { return aHeaderBarDblClickLink; } void SetHeaderBarHelpId(const rtl::OString& rHelpId) {aHeaderBar.SetHelpId(rHelpId);} + + HeaderBar& GetTheHeaderBar() {return aHeaderBar;} }; |