summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-05-15 13:27:19 +0200
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2015-05-15 17:55:15 +0000
commit5b1337f7b2e1f79d78d4bf6559bd84f1ebb934bf (patch)
tree82704da8367f25963d08c570a4fa57e30e4ca839 /basctl
parent6fbda0905d4e721392038bfad9e173e180f788ee (diff)
tdf#62475: partial handmade fixes
Change-Id: Ib9af202c43b916b9af4b4e18db35d470a8692fe4 Reviewed-on: https://gerrit.libreoffice.org/15712 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/basicbox.cxx6
-rw-r--r--basctl/source/basicide/documentenumeration.hxx4
-rw-r--r--basctl/source/basicide/scriptdocument.cxx6
-rw-r--r--basctl/source/inc/doceventnotifier.hxx4
-rw-r--r--basctl/source/inc/docsignature.hxx2
-rw-r--r--basctl/source/inc/scriptdocument.hxx7
6 files changed, 0 insertions, 29 deletions
diff --git a/basctl/source/basicide/basicbox.cxx b/basctl/source/basicide/basicbox.cxx
index a774c1bd796d..4e3982f0eecb 100644
--- a/basctl/source/basicide/basicbox.cxx
+++ b/basctl/source/basicide/basicbox.cxx
@@ -71,9 +71,6 @@ VclPtr<vcl::Window> LibBoxControl::CreateItemWindow( vcl::Window *pParent )
}
-//= DocListenerBox
-
-
DocListenerBox::DocListenerBox( vcl::Window* pParent )
:ListBox( pParent, WinBits( WB_BORDER | WB_DROPDOWN ) )
,m_aNotifier( *this )
@@ -136,9 +133,6 @@ void DocListenerBox::onDocumentModeChanged( const ScriptDocument& /*_rDocument*/
// not interested in
}
-
-//= basctl::LibBox
-
LibBox::LibBox( vcl::Window* pParent, const uno::Reference< frame::XFrame >& rFrame ) :
DocListenerBox( pParent ),
m_xFrame( rFrame )
diff --git a/basctl/source/basicide/documentenumeration.hxx b/basctl/source/basicide/documentenumeration.hxx
index 2c8f68908eef..4029bf62c429 100644
--- a/basctl/source/basicide/documentenumeration.hxx
+++ b/basctl/source/basicide/documentenumeration.hxx
@@ -45,8 +45,6 @@ namespace basctl { namespace docs {
typedef ::std::vector< DocumentDescriptor > Documents;
- //= IDocumentDescriptorFilter
-
/// allows pre-filtering when enumerating document descriptors
class SAL_NO_VTABLE IDocumentDescriptorFilter
{
@@ -58,8 +56,6 @@ namespace basctl { namespace docs {
};
- //= DocumentEnumeration
-
struct DocumentEnumeration_Data;
/** is a helper class for enumerating documents in OOo
diff --git a/basctl/source/basicide/scriptdocument.cxx b/basctl/source/basicide/scriptdocument.cxx
index 4b2083a8eac6..f777ad94c0d8 100644
--- a/basctl/source/basicide/scriptdocument.cxx
+++ b/basctl/source/basicide/scriptdocument.cxx
@@ -113,8 +113,6 @@ namespace basctl
namespace FrameSearchFlag = ::com::sun::star::frame::FrameSearchFlag;
- //= helper
-
namespace
{
static bool StringCompareLessThan( const OUString& lhs, const OUString& rhs )
@@ -282,8 +280,6 @@ namespace basctl
};
- //= ScriptDocument::Impl - implementation
-
ScriptDocument::Impl::Impl()
:m_bIsApplication( true )
,m_bValid( true )
@@ -1033,8 +1029,6 @@ namespace basctl
}
- //= ScriptDocument
-
ScriptDocument::ScriptDocument()
:m_pImpl(new Impl)
{ }
diff --git a/basctl/source/inc/doceventnotifier.hxx b/basctl/source/inc/doceventnotifier.hxx
index edff08a9a70b..d3fa1a574b34 100644
--- a/basctl/source/inc/doceventnotifier.hxx
+++ b/basctl/source/inc/doceventnotifier.hxx
@@ -34,8 +34,6 @@ namespace basctl
class ScriptDocument;
- //= DocumentEventListener
-
class SAL_NO_VTABLE DocumentEventListener : ::boost::noncopyable
{
public:
@@ -53,8 +51,6 @@ namespace basctl
};
- //= DocumentEventNotifier
-
/** allows registering at theGlobalEventBroadcaster for global document events
*/
class DocumentEventNotifier
diff --git a/basctl/source/inc/docsignature.hxx b/basctl/source/inc/docsignature.hxx
index adbefe849b45..fb506aa6c776 100644
--- a/basctl/source/inc/docsignature.hxx
+++ b/basctl/source/inc/docsignature.hxx
@@ -30,8 +30,6 @@ namespace basctl
class ScriptDocument;
- //= DocumentSignature
-
/// encapsulates (actions on) the signature/state of a document
class DocumentSignature
{
diff --git a/basctl/source/inc/scriptdocument.hxx b/basctl/source/inc/scriptdocument.hxx
index f8d03cba5a9d..5479abf06cba 100644
--- a/basctl/source/inc/scriptdocument.hxx
+++ b/basctl/source/inc/scriptdocument.hxx
@@ -36,10 +36,6 @@ class BasicManager;
namespace basctl
{
-
-
- //= LibraryContainerType
-
enum LibraryContainerType
{
E_SCRIPTS,
@@ -62,9 +58,6 @@ namespace basctl
LIBRARY_TYPE_ALL
};
-
- //= ScriptDocument
-
class ScriptDocument;
typedef ::std::vector< ScriptDocument > ScriptDocuments;