summaryrefslogtreecommitdiff
path: root/extensions/source/oooimprovement/errormail.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/oooimprovement/errormail.cxx')
-rw-r--r--extensions/source/oooimprovement/errormail.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/oooimprovement/errormail.cxx b/extensions/source/oooimprovement/errormail.cxx
index de7ef8db0e6f..81bf38ba2868 100644
--- a/extensions/source/oooimprovement/errormail.cxx
+++ b/extensions/source/oooimprovement/errormail.cxx
@@ -1,7 +1,7 @@
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -107,7 +107,7 @@ namespace {
{
struct utsname info;
//memset(&info, 0, sizeof(info));
- uname(&info);
+ uname(&info);
OStringBuffer result =
"<systeminfo:systeminfo xmlns:systeminfo=\"http://openoffice.org/2002/systeminfo\">\n"
"<systeminfo:System name=\""
@@ -170,19 +170,19 @@ namespace {
};
}
-namespace oooimprovement
+namespace oooimprovement
{
Errormail::Errormail(const Reference<XMultiServiceFactory>& sf)
: m_ServiceFactory(sf)
{}
-
+
OString Errormail::getXml()
{
Config config(m_ServiceFactory);
const OString usertype;
const OString email = OUStringToOString(config.getReporterEmail(), RTL_TEXTENCODING_ASCII_US);
OString feedback;
- {
+ {
OStringBuffer temp;
temp.append(config.getReportCount());
feedback = temp.makeStringAndClear();
@@ -200,7 +200,7 @@ namespace oooimprovement
+ xmlAttrEncode(title) + "</reportmail:title>\n"
"<reportmail:attachment name=\"data.zip\" media-type=\"application/zip\" class=\"OOoImprovementLog\"/>\n"
"</reportmail:mail>\n"
- + getOfficeInfoXml(m_ServiceFactory)
+ + getOfficeInfoXml(m_ServiceFactory)
+ getSystemInfoXml(m_ServiceFactory) +
"</errormail:errormail>\n";
return result.makeStringAndClear();