Browse Source

Text: clarified comments.

pull/94/head
Vladimír Vondruš 11 years ago
parent
commit
8882f62842
  1. 2
      src/Magnum/Text/AbstractFont.h
  2. 6
      src/Magnum/Text/AbstractFontConverter.h

2
src/Magnum/Text/AbstractFont.h

@ -277,7 +277,7 @@ class MAGNUM_TEXT_EXPORT AbstractFont: public PluginManager::AbstractPlugin {
* *
* The string is converted from UTF-8 to UTF-32, unique characters are * The string is converted from UTF-8 to UTF-32, unique characters are
* *not* removed. * *not* removed.
* @note On Windows uses `std::vector<char32_t>` instead of * @note On MinGW uses `std::vector<char32_t>` instead of
* `std::u32string`. See @ref Corrade::Utility::Unicode::utf32() * `std::u32string`. See @ref Corrade::Utility::Unicode::utf32()
* for more information. * for more information.
*/ */

6
src/Magnum/Text/AbstractFontConverter.h

@ -272,7 +272,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl
* *
* If the plugin doesn't have @ref Feature::MultiFile, default * If the plugin doesn't have @ref Feature::MultiFile, default
* implementation calls @ref doExportFontToSingleData(). * implementation calls @ref doExportFontToSingleData().
* @note On Windows uses `std::vector<char32_t>` instead of * @note On MinGW uses `std::vector<char32_t>` instead of
* `std::u32string`. See @ref Corrade::Utility::Unicode::utf32() * `std::u32string`. See @ref Corrade::Utility::Unicode::utf32()
* for more information. * for more information.
*/ */
@ -285,7 +285,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl
/** /**
* @brief Implementation for @ref exportFontToSingleData() * @brief Implementation for @ref exportFontToSingleData()
* *
* @note On Windows uses `std::vector<char32_t>` instead of * @note On MinGW uses `std::vector<char32_t>` instead of
* `std::u32string`. See @ref Corrade::Utility::Unicode::utf32() * `std::u32string`. See @ref Corrade::Utility::Unicode::utf32()
* for more information. * for more information.
*/ */
@ -301,7 +301,7 @@ class MAGNUM_TEXT_EXPORT AbstractFontConverter: public PluginManager::AbstractPl
* If @ref Feature::ConvertData is supported, default implementation * If @ref Feature::ConvertData is supported, default implementation
* calls @ref doExportFontToData() and saves the result to given * calls @ref doExportFontToData() and saves the result to given
* file(s). * file(s).
* @note On Windows uses `std::vector<char32_t>` instead of * @note On MinGW uses `std::vector<char32_t>` instead of
* `std::u32string`. See @ref Corrade::Utility::Unicode::utf32() * `std::u32string`. See @ref Corrade::Utility::Unicode::utf32()
* for more information. * for more information.
*/ */

Loading…
Cancel
Save