Skip to content

Commit

Permalink
Fix borked imports
Browse files Browse the repository at this point in the history
  • Loading branch information
attah committed Dec 17, 2019
1 parent 45230e7 commit d355b41
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion qml/pages/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Page {
AboutLabel {
font.pixelSize: Theme.fontSizeLarge
color: Theme.highlightColor
text: "SeaPrint 0.3-1"
text: "SeaPrint 0.3-3"
}
AboutLabel {
font.pixelSize: Theme.fontSizeSmall
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions qml/pages/PrinterPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Page {
console.log("handling", tag, name, prettyName, JSON.stringify(printer.attrs[name+"-supported"]), JSON.stringify(printer.attrs[name+"-default"]))
switch(tag) {
case 0x21:
loader.setSource("IntegerSetting.qml",
loader.setSource("../components/IntegerSetting.qml",
{name: name,
prettyName: prettyName,
tag: tag,
Expand All @@ -95,7 +95,7 @@ Page {
})
break
case 0x33:
loader.setSource("RangeSetting.qml",
loader.setSource("../components/RangeSetting.qml",
{name: name,
prettyName: prettyName,
valid: false, //TODO
Expand All @@ -104,7 +104,7 @@ Page {
break
case 0x32:
case 0x23:
loader.setSource("ChoiceSetting.qml",
loader.setSource("../components/ChoiceSetting.qml",
{name: name,
prettyName: prettyName,
tag: tag,
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-seaprint.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name: harbour-seaprint

Summary: SeaPrint
Version: 0.3
Release: 2
Release: 3
Group: Qt/Qt
License: LICENSE
URL: http://example.org/
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-seaprint.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Name: harbour-seaprint
Summary: SeaPrint
Version: 0.3
Release: 2
Release: 3
# The contents of the Group field should be one of the groups listed here:
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
Group: Qt/Qt
Expand Down

0 comments on commit d355b41

Please sign in to comment.