diff options
Diffstat (limited to 'plugins/MyDetails/src/frame.cpp')
-rw-r--r-- | plugins/MyDetails/src/frame.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MyDetails/src/frame.cpp b/plugins/MyDetails/src/frame.cpp index cfe97cb2d8..f7a4b44242 100644 --- a/plugins/MyDetails/src/frame.cpp +++ b/plugins/MyDetails/src/frame.cpp @@ -296,7 +296,7 @@ int CreateFrame() if (flags & F_VISIBLE)
CallService(MS_CLIST_FRAMES_SHFRAME, frame_id, 0);
- db_unset(NULL, "MyDetails", "ForceHideFrame");
+ db_unset(0, "MyDetails", "ForceHideFrame");
}
if (db_get_b(0, "MyDetails", "ForceShowFrame", 0)) {
@@ -304,7 +304,7 @@ int CreateFrame() if (!(flags & F_VISIBLE))
CallService(MS_CLIST_FRAMES_SHFRAME, frame_id, 0);
- db_unset(NULL, "MyDetails", "ForceShowFrame");
+ db_unset(0, "MyDetails", "ForceShowFrame");
}
}
else {
|