Krita Source Code Documentation
Loading...
Searching...
No Matches
KoZoomActionState.cpp File Reference
#include "KoZoomActionState.h"
#include <QDebug>
#include <QLocale>
#include <klocalizedstring.h>

Go to the source code of this file.

Functions

QDebug operator<< (QDebug dbg, const KoZoomActionState::ZoomItem &item)
 

Function Documentation

◆ operator<<()

QDebug operator<< ( QDebug dbg,
const KoZoomActionState::ZoomItem & item )

Definition at line 146 of file KoZoomActionState.cpp.

147{
148 dbg.nospace() << "KoZoomActionState::ZoomItem("
149 << std::get<0>(item) << ", "
150 << std::get<1>(item) << ", "
151 << std::get<2>(item) << ")";
152
153 return dbg.space();
154}