Skip to content

Commit

Permalink
Fixed code style deskflow#4712
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerry (Xinyu Hou) committed Jul 31, 2015
1 parent 1659f9f commit 5d61996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/platform/XWindowsClipboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ XWindowsClipboard::icccmFillCache()
IClipboard::EFormat format = converter->getFormat();
m_data[format] = converter->toIClipboard(targetData);
m_added[format] = true;
LOG((CLOG_DEBUG " added format %d for target %s (%u %s)", format, XWindowsUtil::atomToString(m_display, target).c_str(), targetData.size(), targetData.size() == 1 ? "byte" : "bytes"));
LOG((CLOG_DEBUG "added format %d for target %s (%u %s)", format, XWindowsUtil::atomToString(m_display, target).c_str(), targetData.size(), targetData.size() == 1 ? "byte" : "bytes"));
}
}

Expand Down Expand Up @@ -799,7 +799,7 @@ XWindowsClipboard::motifFillCache()
IClipboard::EFormat format = converter->getFormat();
m_data[format] = converter->toIClipboard(targetData);
m_added[format] = true;
LOG((CLOG_DEBUG " added format %d for target %s", format, XWindowsUtil::atomToString(m_display, target).c_str()));
LOG((CLOG_DEBUG "added format %d for target %s", format, XWindowsUtil::atomToString(m_display, target).c_str()));
}
}

Expand Down

0 comments on commit 5d61996

Please sign in to comment.