/pidgin/main: cf6979b92221: Spaces instead of tabs in doxygen co...
Mark Doliner
mark at kingant.net
Mon Jan 21 21:09:54 EST 2013
Changeset: cf6979b92221d5071993309c366cba45369ee237
Author: Mark Doliner <mark at kingant.net>
Date: 2013-01-21 18:09 -0800
Branch: release-2.x.y
URL: http://hg.pidgin.im/pidgin/main/rev/cf6979b92221
Description:
Spaces instead of tabs in doxygen comments.
diffstat:
libpurple/imgstore.h | 32 ++++++++++++++++----------------
1 files changed, 16 insertions(+), 16 deletions(-)
diffs (91 lines):
diff --git a/libpurple/imgstore.h b/libpurple/imgstore.h
--- a/libpurple/imgstore.h
+++ b/libpurple/imgstore.h
@@ -47,11 +47,11 @@ extern "C" {
* No ID is allocated when using this function. If you need to reference the
* image by an ID, use purple_imgstore_add_with_id() instead.
*
- * @param data Pointer to the image data, which the imgstore will take
- * ownership of and free as appropriate. If you want a
- * copy of the data, make it before calling this function.
- * @param size Image data's size.
- * @param filename Filename associated with image. This is for your
+ * @param data Pointer to the image data, which the imgstore will take
+ * ownership of and free as appropriate. If you want a
+ * copy of the data, make it before calling this function.
+ * @param size Image data's size.
+ * @param filename Filename associated with image. This is for your
* convenience. It could be the full path to the
* image or, more commonly, the filename of the image
* without any directory information. It can also be
@@ -80,11 +80,11 @@ purple_imgstore_new_from_file(const char
* the image with purple_imgstore_unref_by_id() or purple_imgstore_unref()
* for it to be freed.
*
- * @param data Pointer to the image data, which the imgstore will take
- * ownership of and free as appropriate. If you want a
- * copy of the data, make it before calling this function.
- * @param size Image data's size.
- * @param filename Filename associated with image. This is for your
+ * @param data Pointer to the image data, which the imgstore will take
+ * ownership of and free as appropriate. If you want a
+ * copy of the data, make it before calling this function.
+ * @param size Image data's size.
+ * @param filename Filename associated with image. This is for your
* convenience. It could be the full path to the
* image or, more commonly, the filename of the image
* without any directory information. It can also be
@@ -99,7 +99,7 @@ int purple_imgstore_add_with_id(gpointer
* Retrieve an image from the store. The caller does not own a
* reference to the image.
*
- * @param id The ID for the image.
+ * @param id The ID for the image.
*
* @return A pointer to the requested image, or NULL if it was not found.
*/
@@ -108,7 +108,7 @@ PurpleStoredImage *purple_imgstore_find_
/**
* Retrieves a pointer to the image's data.
*
- * @param img The Image
+ * @param img The Image
*
* @return A pointer to the data, which must not
* be freed or modified.
@@ -118,7 +118,7 @@ gconstpointer purple_imgstore_get_data(P
/**
* Retrieves the length of the image's data.
*
- * @param img The Image
+ * @param img The Image
*
* @return The size of the data that the pointer returned by
* purple_imgstore_get_data points to.
@@ -128,7 +128,7 @@ size_t purple_imgstore_get_size(PurpleSt
/**
* Retrieves a pointer to the image's filename.
*
- * @param img The image
+ * @param img The image
*
* @return A pointer to the filename, which must not
* be freed or modified.
@@ -175,7 +175,7 @@ purple_imgstore_unref(PurpleStoredImage
* purple_imgstore_ref(), so if you have a PurpleStoredImage, it'll
* be more efficient to call purple_imgstore_ref() directly.
*
- * @param id The ID for the image.
+ * @param id The ID for the image.
*/
void purple_imgstore_ref_by_id(int id);
@@ -186,7 +186,7 @@ void purple_imgstore_ref_by_id(int id);
* purple_imgstore_unref(), so if you have a PurpleStoredImage, it'll
* be more efficient to call purple_imgstore_unref() directly.
*
- * @param id The ID for the image.
+ * @param id The ID for the image.
*/
void purple_imgstore_unref_by_id(int id);
More information about the Commits
mailing list