aboutsummaryrefslogtreecommitdiffstats
path: root/Source/main.c
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-11-15 02:48:51 +0100
committerMax <post@wickenrode.com>2015-11-15 02:48:51 +0100
commitc7b56fe8818ea02de033193318c544eea5abf024 (patch)
treea37224888fc53456abf722128c246f78d2724916 /Source/main.c
parent0b9fb7e62aeba608081eb3ca1bc52dc7020c8add (diff)
downloadsequelpro-c7b56fe8818ea02de033193318c544eea5abf024.tar.gz
sequelpro-c7b56fe8818ea02de033193318c544eea5abf024.tar.bz2
sequelpro-c7b56fe8818ea02de033193318c544eea5abf024.zip
* Add QuickLook support for "export settings" files
* Add MGTemplateEngine to the QL plugin * Reorder the generator code a bit, so it's not one monolithic function * Add constants for some other sfp format types
Diffstat (limited to 'Source/main.c')
-rw-r--r--Source/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/main.c b/Source/main.c
index 2c497dbe..e40183e0 100644
--- a/Source/main.c
+++ b/Source/main.c
@@ -148,7 +148,7 @@ HRESULT QuickLookGeneratorQueryInterface(void *thisInstance,REFIID iid,LPVOID *p
((QLGeneratorInterfaceStruct *)((QuickLookGeneratorPluginType *)thisInstance)->conduitInterface)->CancelThumbnailGeneration = CancelThumbnailGeneration;
((QLGeneratorInterfaceStruct *)((QuickLookGeneratorPluginType *)thisInstance)->conduitInterface)->GeneratePreviewForURL = GeneratePreviewForURL;
((QLGeneratorInterfaceStruct *)((QuickLookGeneratorPluginType *)thisInstance)->conduitInterface)->CancelPreviewGeneration = CancelPreviewGeneration;
- ((QLGeneratorInterfaceStruct *)((QuickLookGeneratorPluginType*)thisInstance)->conduitInterface)->AddRef(thisInstance);
+ ((QLGeneratorInterfaceStruct *)((QuickLookGeneratorPluginType *)thisInstance)->conduitInterface)->AddRef(thisInstance);
*ppv = thisInstance;
CFRelease(interfaceID);
return S_OK;