summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-01-02 17:16:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-01-06 20:34:00 +0100
commit08dc46adc1aa50deb645f7548a264e084d17f5f0 (patch)
tree3a5e4a604fc4293d892c1fdca1e9306b8ab179af /bin
parentbd14c414082236c4be8fef8eb488afbd3dd481c6 (diff)
remove support for deprecated GtkAlignment
Change-Id: I29e21e9e4d9b80b8c8e331ed9cce76b2e7fe0f68 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108689 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rw-r--r--bin/find-can-be-private-symbols.classes.results1
-rw-r--r--bin/find-mergedlib-can-be-private.classes.results1
-rwxr-xr-xbin/gla11y1
-rwxr-xr-xbin/lint-ui.py11
4 files changed, 0 insertions, 14 deletions
diff --git a/bin/find-can-be-private-symbols.classes.results b/bin/find-can-be-private-symbols.classes.results
index fa75e6edb01b..0ddaeba94322 100644
--- a/bin/find-can-be-private-symbols.classes.results
+++ b/bin/find-can-be-private-symbols.classes.results
@@ -147,7 +147,6 @@ SyntaxHighlighter::Tokenizer
SystemWindow::ImplData
TBCExtraInfo
TBCGeneralInfo
-VclAlignment
VclBin
VclBuilder::MenuAndId
VclBuilder::ParserState
diff --git a/bin/find-mergedlib-can-be-private.classes.results b/bin/find-mergedlib-can-be-private.classes.results
index 77df8bb4457e..7a05b3697567 100644
--- a/bin/find-mergedlib-can-be-private.classes.results
+++ b/bin/find-mergedlib-can-be-private.classes.results
@@ -197,7 +197,6 @@ VCLXEdit
VCLXMenuBar
VCLXSpinField
ValueSet
-VclAlignment
VclBin
VclBuilder::MenuAndId
VclBuilder::ParserState
diff --git a/bin/gla11y b/bin/gla11y
index 7883a6233199..7376f672d866 100755
--- a/bin/gla11y
+++ b/bin/gla11y
@@ -85,7 +85,6 @@ widgets_ignored = widgets_toplevel + [
'GtkExpander',
'GtkViewport',
'GtkScrolledWindow',
- 'GtkAlignment',
'GtkRevealer',
'GtkSearchBar',
'GtkHeaderBar',
diff --git a/bin/lint-ui.py b/bin/lint-ui.py
index 7bbf46a2a113..c04eba63bb76 100755
--- a/bin/lint-ui.py
+++ b/bin/lint-ui.py
@@ -142,17 +142,6 @@ def check_frames(root):
if len(frame_alignments) > 0:
lint_assert(False, "Deprecated GtkAlignment in GtkFrame with id = '" + frame.attrib['id'] + "'", frame)
-def check_alignment_top_padding(alignment):
- top_padding_properties = alignment.findall("./property[@name='top_padding']")
- assert len(top_padding_properties) <= 1
- # TODO reenable when we are ready to fix
- # if len(top_padding_properties) < 1:
- # lint_assert(False, "No GtkAlignment 'top_padding' set. Should probably be " + ALIGNMENT_TOP_PADDING, alignment)
- #if len(top_padding_properties) == 1:
- # top_padding = top_padding_properties[0]
- # lint_assert(top_padding.text == ALIGNMENT_TOP_PADDING,
- # "GtkAlignment 'top_padding' should be " + ALIGNMENT_TOP_PADDING, alignment)
-
def check_title_labels(root):
labels = root.findall(".//child[@type='label']")
for label in labels: