diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 17:15:14 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2009-01-24 17:15:14 +0000 |
commit | ff31a97b260e955c7af6b88fe4d606282160073d (patch) | |
tree | 0947e28235d7e773803039d41316eefea3b8eb02 /Plugins/skins/SkinLib/V8Script.h | |
parent | de4ef8a65afd0c38f8bbdfcb3b90ff82a98d1483 (diff) |
skins: 0.0.0.2
* Fix for float numbers
+ Added valign (not used yet)
+ Added dialog info (allow clients to set script variables starting with info)
+ The zip will contain also the pdbs (at least until it is more stable)
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@134 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/skins/SkinLib/V8Script.h')
-rw-r--r-- | Plugins/skins/SkinLib/V8Script.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugins/skins/SkinLib/V8Script.h b/Plugins/skins/SkinLib/V8Script.h index 45a9af7..b7e1f3f 100644 --- a/Plugins/skins/SkinLib/V8Script.h +++ b/Plugins/skins/SkinLib/V8Script.h @@ -25,7 +25,7 @@ public: std::pair<SkinOptions *,DialogState *> configure(Dialog *dlg);
- bool run(DialogState * state, SkinOptions *opts);
+ bool run(DialogState * state, SkinOptions *opts, DialogInfo *info);
void setExceptionCallback(ExceptionCallback cb, void *param = NULL);
@@ -38,7 +38,7 @@ private: void *exceptionCallbackParam;
void reportException(v8::TryCatch *try_catch);
- void fillWrappers(DialogState *state, SkinOptions *opts, bool configure);
+ void fillWrappers(DialogState *state, SkinOptions *opts, DialogInfo *info, bool configure);
};
|