Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
0420f4f7
Commit
0420f4f7
authored
Jun 23, 2014
by
Daenyth
Browse files
Log download failures
parent
632e7f48
Changes
2
Show whitespace changes
Inline
Side-by-side
cockatrice/src/carddatabase.cpp
View file @
0420f4f7
...
...
@@ -176,6 +176,10 @@ void PictureLoader::startNextPicDownload()
void
PictureLoader
::
picDownloadFinished
(
QNetworkReply
*
reply
)
{
QString
picsPath
=
_picsPath
;
if
(
reply
->
error
())
{
qDebug
()
<<
"Download failed:"
<<
reply
->
errorString
();
}
const
QByteArray
&
picData
=
reply
->
readAll
();
QImage
testImage
;
if
(
testImage
.
loadFromData
(
picData
))
{
...
...
cockatrice/src/carddatabase.h
View file @
0420f4f7
...
...
@@ -53,10 +53,8 @@ public:
bool
getStripped
()
const
{
return
stripped
;
}
QString
getSetName
()
const
{
return
sortedSets
[
setIndex
]
->
getShortName
();
}
bool
nextSet
();
bool
getHq
()
const
{
return
hq
;
}
void
setHq
(
bool
_hq
)
{
hq
=
_hq
;
}
};
class
PictureLoader
:
public
QObject
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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