Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaarten Gribnau <mail@maartengribnau.com>2003-01-01 23:31:12 +0300
committerMaarten Gribnau <mail@maartengribnau.com>2003-01-01 23:31:12 +0300
commitc78a1749edca3210ed0f3567a086b3f1044a1d04 (patch)
tree7bb6533892705f85c3cdb0d4a77958c4fbe5324b /intern/ghost
parent065f294aa134cfedce9d0e984c357db2d18c7080 (diff)
Removed unused vars.
Maarten
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_SystemCarbon.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/intern/ghost/intern/GHOST_SystemCarbon.cpp b/intern/ghost/intern/GHOST_SystemCarbon.cpp
index 802ff17a147..1d1181a4f2f 100644
--- a/intern/ghost/intern/GHOST_SystemCarbon.cpp
+++ b/intern/ghost/intern/GHOST_SystemCarbon.cpp
@@ -194,7 +194,6 @@ GHOST_SystemCarbon::GHOST_SystemCarbon() :
UnsignedWide micros;
::Microseconds(&micros);
- UInt64 millis;
m_start_time = UnsignedWideToUInt64(micros)/1000;
}
@@ -377,14 +376,14 @@ extern "C" int GHOST_HACK_getFirstFile(char buf[512]) {
OSErr GHOST_SystemCarbon::sAEHandlerLaunch(const AppleEvent *event, AppleEvent *reply, SInt32 refCon)
{
- GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
+ //GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
return noErr;
}
OSErr GHOST_SystemCarbon::sAEHandlerOpenDocs(const AppleEvent *event, AppleEvent *reply, SInt32 refCon)
{
- GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
+ //GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
AEDescList docs;
SInt32 ndocs;
OSErr err;
@@ -426,7 +425,7 @@ OSErr GHOST_SystemCarbon::sAEHandlerOpenDocs(const AppleEvent *event, AppleEvent
OSErr GHOST_SystemCarbon::sAEHandlerPrintDocs(const AppleEvent *event, AppleEvent *reply, SInt32 refCon)
{
- GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
+ //GHOST_SystemCarbon* sys = (GHOST_SystemCarbon*) refCon;
return noErr;
}