[Bf-blender-cvs] [25451191128] master: Cleanup: move public doc-strings into headers for 'blendthumb'

Campbell Barton noreply at git.blender.org
Wed Dec 8 07:15:53 CET 2021


Commit: 2545119112875a098d8d807c84b7f7a3e1bcd338
Author: Campbell Barton
Date:   Wed Dec 8 17:12:37 2021 +1100
Branches: master
https://developer.blender.org/rB2545119112875a098d8d807c84b7f7a3e1bcd338

Cleanup: move public doc-strings into headers for 'blendthumb'

Ref T92709

===================================================================

M	source/blender/blendthumb/src/blendthumb.hh
M	source/blender/blendthumb/src/blendthumb_extract.cc

===================================================================

diff --git a/source/blender/blendthumb/src/blendthumb.hh b/source/blender/blendthumb/src/blendthumb.hh
index c029a1766d6..0bcb160519e 100644
--- a/source/blender/blendthumb/src/blendthumb.hh
+++ b/source/blender/blendthumb/src/blendthumb.hh
@@ -53,6 +53,10 @@ enum eThumbStatus {
 
 std::optional<blender::Vector<uint8_t>> blendthumb_create_png_data_from_thumb(
     const Thumbnail *thumb);
+/**
+ * This function extracts the thumbnail from the .blend file into thumb.
+ * Returns #BT_OK for success and the relevant error code otherwise.
+ */
 eThumbStatus blendthumb_create_thumb_from_file(struct FileReader *rawfile, Thumbnail *thumb);
 
 /* INTEGER CODES */
diff --git a/source/blender/blendthumb/src/blendthumb_extract.cc b/source/blender/blendthumb/src/blendthumb_extract.cc
index f1c5567bab5..2d14a88c904 100644
--- a/source/blender/blendthumb/src/blendthumb_extract.cc
+++ b/source/blender/blendthumb/src/blendthumb_extract.cc
@@ -179,10 +179,6 @@ static eThumbStatus blendthumb_extract_from_file_impl(FileReader *file,
   return BT_INVALID_THUMB;
 }
 
-/**
- * This function extracts the thumbnail from the .blend file into thumb.
- * Returns #BT_OK for success and the relevant error code otherwise.
- */
 eThumbStatus blendthumb_create_thumb_from_file(FileReader *rawfile, Thumbnail *thumb)
 {
   /* Read header in order to identify file type. */



More information about the Bf-blender-cvs mailing list