From fd57253cf39bbbe2833216e666636e8cfdb73d03 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 11 Jun 2020 17:10:26 +0200 Subject: [PATCH] use DC_DOWNLOAD_NO_URL --- deltachat-ffi/deltachat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deltachat-ffi/deltachat.h b/deltachat-ffi/deltachat.h index 7022dd36d..2acd310e8 100644 --- a/deltachat-ffi/deltachat.h +++ b/deltachat-ffi/deltachat.h @@ -3908,7 +3908,7 @@ int dc_msg_has_html (dc_msg_t* msg); * or if some further action is needed. * * The function returns one of: - * - @ref DC_DOWNLOAD_NOT_NEEDED - The message does not need any further download action + * - @ref DC_DOWNLOAD_NO_URL - The message does not need any further download action * and should be rendered as usual. * - @ref DC_DOWNLOAD_AVAILABLE - There is additional content to download. * Tn addition to the usual message rendering, @@ -5351,7 +5351,7 @@ void dc_event_unref(dc_event_t* event); * @{ */ -#define DC_DOWNLOAD_NOT_NEEDED 10 ///< Download not needed, see dc_msg_download_status() for details. +#define DC_DOWNLOAD_NO_URL 10 ///< Download not needed, see dc_msg_download_status() for details. #define DC_DOWNLOAD_AVAILABLE 20 ///< Download available, see dc_msg_download_status() for details. #define DC_DOWNLOAD_IN_PROGRESS 30 ///< Download in progress, see dc_msg_download_status() for details. #define DC_DOWNLOAD_DONE 40 ///< Download done, see dc_msg_download_status() for details.