mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Remove the hack to mark parsed XML files as downloaded
This was necessary for the Uemis downloader when we used the SDA file format as intermediary data format and imported that as XML buffer. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1bc4aba8e7
commit
15edba9ab0
3 changed files with 4 additions and 7 deletions
|
@ -168,7 +168,6 @@ static struct {
|
|||
} cur_event;
|
||||
static struct tm cur_tm;
|
||||
static int cur_cylinder_index, cur_ws_index;
|
||||
static gboolean from_download;
|
||||
|
||||
static enum import_source {
|
||||
UNKNOWN,
|
||||
|
@ -949,7 +948,6 @@ static void dive_start(void)
|
|||
add_dive_to_trip(cur_dive, cur_trip);
|
||||
cur_dive->tripflag = IN_TRIP;
|
||||
}
|
||||
cur_dive->downloaded = from_download;
|
||||
}
|
||||
|
||||
static void dive_end(void)
|
||||
|
@ -1267,10 +1265,9 @@ static void reset_all(void)
|
|||
import_source = UNKNOWN;
|
||||
}
|
||||
|
||||
void parse_xml_buffer(const char *url, const char *buffer, int size, gboolean downloaded, GError **error)
|
||||
void parse_xml_buffer(const char *url, const char *buffer, int size, GError **error)
|
||||
{
|
||||
xmlDoc *doc;
|
||||
from_download = downloaded;
|
||||
|
||||
doc = xmlReadMemory(buffer, size, url, NULL, 0);
|
||||
if (!doc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue