summaryrefslogtreecommitdiff
path: root/automation/source/server/prof_nul.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'automation/source/server/prof_nul.cxx')
-rw-r--r--automation/source/server/prof_nul.cxx15
1 files changed, 6 insertions, 9 deletions
diff --git a/automation/source/server/prof_nul.cxx b/automation/source/server/prof_nul.cxx
index 46e1e3789d7b..58586ebf1948 100644
--- a/automation/source/server/prof_nul.cxx
+++ b/automation/source/server/prof_nul.cxx
@@ -36,29 +36,29 @@
struct SysdepProfileSnapshot
{
- // Hier stehen alle Felder zum Speichern eines Snapshot
+ // fields for saving a snapshot
};
struct SysdepStaticData
{
- // Hier steht alles, was whrend des Profiles stndig gebraucht wird
+ // everything that is always needed during profiling
};
void TTProfiler::InitSysdepProfiler()
{
- if ( !pSysDepStatic ) // Sollte immer so sein!!
+ if ( !pSysDepStatic ) // Should always be like this!!
pSysDepStatic = new SysdepStaticData;
- // Hier initialisieren
+ // initialize here
};
void TTProfiler::DeinitSysdepProfiler()
{
- if ( pSysDepStatic ) // Sollte immer so sein!!
+ if ( pSysDepStatic ) // Should always be like this!!
{
- // Hier aufrumen und eventuell Speicher freigeben
+ // tidy up here and free storage if applicable
delete pSysDepStatic;
}
@@ -75,19 +75,16 @@ void TTProfiler::DeleteSysdepSnapshotData( SysdepProfileSnapshot *pSysdepProfile
};
-// Titelzeile fr Logdatei
String TTProfiler::GetSysdepProfileHeader()
{
return String(CUniString("(noch) keine weiteren Daten Implementiert"));
};
-// Zustand merken
void TTProfiler::GetSysdepProfileSnapshot( SysdepProfileSnapshot *, sal_uInt16 )
{};
-// Informationszeile zusammenbauen
String TTProfiler::GetSysdepProfileLine( SysdepProfileSnapshot *, SysdepProfileSnapshot * )
{
return String();