summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-06-25 10:01:26 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-06-25 14:19:02 +0100
commit022b62296c4166486d38f55acf522c62c82894eb (patch)
tree212204ad905276dd704623ea9b9cb6cd6793a073 /desktop
parentd5909e1452a87cb5434d144b01d368e52d64fd68 (diff)
callcatcher: update list
Change-Id: Id31324a6bf36e937cc6396207913e4183253bf04
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/misc/dp_misc.cxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/desktop/source/deployment/misc/dp_misc.cxx b/desktop/source/deployment/misc/dp_misc.cxx
index a023f0453686..a2628164b64b 100644
--- a/desktop/source/deployment/misc/dp_misc.cxx
+++ b/desktop/source/deployment/misc/dp_misc.cxx
@@ -494,20 +494,6 @@ void writeConsoleWithStream(::rtl::OUString const & sText, FILE * stream)
}
#endif
-#ifdef WNT
-void writeConsoleWithStream(::rtl::OString const & sText, HANDLE stream)
-{
- writeConsoleWithStream(OStringToOUString(
- sText, RTL_TEXTENCODING_UTF8), stream);
-}
-#else
-void writeConsoleWithStream(::rtl::OString const & sText, FILE * stream)
-{
- fprintf(stream, "%s", sText.getStr());
- fflush(stream);
-}
-#endif
-
void writeConsole(::rtl::OUString const & sText)
{
#ifdef WNT
@@ -517,15 +503,6 @@ void writeConsole(::rtl::OUString const & sText)
#endif
}
-void writeConsole(::rtl::OString const & sText)
-{
-#ifdef WNT
- writeConsoleWithStream(sText, GetStdHandle(STD_OUTPUT_HANDLE));
-#else
- writeConsoleWithStream(sText, stdout);
-#endif
-}
-
void writeConsoleError(::rtl::OUString const & sText)
{
#ifdef WNT
@@ -535,18 +512,6 @@ void writeConsoleError(::rtl::OUString const & sText)
#endif
}
-
-void writeConsoleError(::rtl::OString const & sText)
-{
-#ifdef WNT
- writeConsoleWithStream(sText, GetStdHandle(STD_ERROR_HANDLE));
-#else
- writeConsoleWithStream(sText, stderr);
-#endif
-}
-
-
-
OUString readConsole()
{
#ifdef WNT
@@ -580,14 +545,6 @@ void TRACE(::rtl::OUString const & sText)
#endif
}
-void TRACE(::rtl::OString const & sText)
-{
- (void) sText;
-#if OSL_DEBUG_LEVEL > 1
- writeConsole(sText);
-#endif
-}
-
void syncRepositories(
bool force, Reference<ucb::XCommandEnvironment> const & xCmdEnv)
{