Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Chakra
Akabei
Akabei frontend
Commits
17f47096
Commit
17f47096
authored
Jan 05, 2016
by
AlmAck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improved a bit the output allignement
parent
c1944d05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
utils.cpp
utils.cpp
+2
-2
No files found.
utils.cpp
View file @
17f47096
...
...
@@ -65,8 +65,8 @@ void printPackageInformation(Akabei::Package * p, QTextStream &out, bool showLes
if
(
!
showLess
)
{
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Description:"
]
<<
qSetFieldWidth
(
0
)
<<
p
->
description
()
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Installation size:"
]
<<
qSetFieldWidth
(
0
)
<<
Akabei
::
Helpers
::
formatByteSize
(
p
->
size
());
out
<<
"
\t
"
<<
qSetFieldWidth
(
0
)
<<
fields
[
"Architecture:"
]
<<
" "
<<
p
->
arch
()
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Installation size:"
]
<<
qSetFieldWidth
(
0
)
<<
Akabei
::
Helpers
::
formatByteSize
(
p
->
size
())
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Architecture:"
]
<<
qSetFieldWidth
(
0
)
<<
p
->
arch
()
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Homepage:"
]
<<
qSetFieldWidth
(
0
)
<<
p
->
url
().
toString
()
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Licenses:"
]
<<
qSetFieldWidth
(
0
)
<<
(
p
->
licenses
().
isEmpty
()
?
QObject
::
tr
(
"None"
)
:
p
->
licenses
().
join
(
" "
))
<<
endl
;
out
<<
"
\t
"
<<
qSetFieldWidth
(
n
)
<<
fields
[
"Depends on:"
]
<<
qSetFieldWidth
(
0
)
<<
(
p
->
dependencies
().
isEmpty
()
?
QObject
::
tr
(
"None"
)
:
p
->
dependencies
().
join
(
" "
))
<<
endl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment