Renamed PrettyPrintDecorator into JsonPrettyPrint

This commit is contained in:
Benoit Blanchon
2014-08-26 10:08:54 +02:00
parent 23e61cc0f7
commit 3ae7327687
8 changed files with 28 additions and 28 deletions

View File

@ -8,7 +8,7 @@
#include "JsonValue.h"
#include "Print.h"
#include "Printable.h"
#include "PrettyPrintDecorator.h"
#include "JsonPrettyPrint.h"
namespace ArduinoJson
{
@ -28,7 +28,7 @@ namespace ArduinoJson
size_t prettyPrintTo(IndentedPrint& p) const
{
PrettyPrintDecorator decorator(p);
JsonPrettyPrint decorator(p);
return printTo(decorator);
}