mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 17:03:15 +08:00
23 lines
415 B
C++
23 lines
415 B
C++
|
|
// auto inserted precompiled begin
|
|
#include "precompiled_odtformat.h"
|
|
// auto inserted precompiled end
|
|
|
|
#include "NumberWrappedParagraphs.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Limit
|
|
{
|
|
NumberWrappedParagraphs::NumberWrappedParagraphs()
|
|
{
|
|
add("no limit");
|
|
}
|
|
|
|
const std::string NumberWrappedParagraphs::no_find() const
|
|
{
|
|
return "no limit";
|
|
}
|
|
} // namespace Limit
|
|
} // namespace Odt
|