mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Docs: Replace doxygen preprocessor conditionals with @cond and @endconds
This commit is contained in:
parent
26e8d81380
commit
36d07a6ce3
136 changed files with 420 additions and 449 deletions
|
|
@ -35,8 +35,7 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
#ifndef DOXYGEN
|
||||
|
||||
/** @cond */
|
||||
//==============================================================================
|
||||
/**
|
||||
This class is now deprecated in favour of RangedDirectoryIterator.
|
||||
|
|
@ -203,7 +202,6 @@ private:
|
|||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (DirectoryIterator)
|
||||
};
|
||||
|
||||
#endif
|
||||
/** @endcond */
|
||||
|
||||
} // namespace juce
|
||||
|
|
|
|||
|
|
@ -35,9 +35,11 @@
|
|||
namespace juce
|
||||
{
|
||||
|
||||
#if ! DOXYGEN && (JUCE_MAC || JUCE_IOS)
|
||||
/** @cond */
|
||||
#if JUCE_MAC || JUCE_IOS
|
||||
using OSType = unsigned int;
|
||||
#endif
|
||||
/** @endcond */
|
||||
|
||||
//==============================================================================
|
||||
/**
|
||||
|
|
@ -1153,7 +1155,8 @@ public:
|
|||
bool foldersFirst;
|
||||
};
|
||||
|
||||
#if JUCE_ALLOW_STATIC_NULL_VARIABLES && ! defined (DOXYGEN)
|
||||
#if JUCE_ALLOW_STATIC_NULL_VARIABLES
|
||||
/** @cond */
|
||||
/* These static objects are deprecated because it's too easy to accidentally use them indirectly
|
||||
during a static constructor, which leads to very obscure order-of-initialisation bugs.
|
||||
Use File::getSeparatorChar() and File::getSeparatorString(), and instead of File::nonexistent,
|
||||
|
|
@ -1162,6 +1165,7 @@ public:
|
|||
[[deprecated]] static const juce_wchar separator;
|
||||
[[deprecated]] static const StringRef separatorString;
|
||||
[[deprecated]] static const File nonexistent;
|
||||
/** @endcond */
|
||||
#endif
|
||||
|
||||
private:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue