summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-10-05 15:57:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-10-05 16:02:59 +0100
commit306add13e1d9f70e1111acde8362aea6c169a97d (patch)
tree67660a864cbb3df6bdccf7b3591faa7135e0a4f0 /svtools
parent36ca919da2e360fde7cc28230069eff488a85ac5 (diff)
convert the last two lonely FixedInfos to FixedText
Change-Id: Ia6ed5f71931a6141efb3d5e5eb329149d6850342
Diffstat (limited to 'svtools')
-rw-r--r--svtools/Library_svt.mk1
-rw-r--r--svtools/source/control/stdctrl.cxx28
2 files changed, 0 insertions, 29 deletions
diff --git a/svtools/Library_svt.mk b/svtools/Library_svt.mk
index fccfae51d4fa..f778453846ee 100644
--- a/svtools/Library_svt.mk
+++ b/svtools/Library_svt.mk
@@ -126,7 +126,6 @@ $(eval $(call gb_Library_add_exception_objects,svt,\
svtools/source/control/ruler \
svtools/source/control/scriptedtext \
svtools/source/control/scrwin \
- svtools/source/control/stdctrl \
svtools/source/control/tabbar \
svtools/source/control/toolbarmenu \
svtools/source/control/toolbarmenuacc \
diff --git a/svtools/source/control/stdctrl.cxx b/svtools/source/control/stdctrl.cxx
deleted file mode 100644
index 4e3b03c8c5ce..000000000000
--- a/svtools/source/control/stdctrl.cxx
+++ /dev/null
@@ -1,28 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#include <svtools/stdctrl.hxx>
-
-FixedInfo::FixedInfo( vcl::Window* pParent, const ResId& rResId ) :
- FixedText( pParent, rResId )
-{
- SetStyle( GetStyle() | WB_INFO );
-}
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */