diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-04 20:19:47 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-04 20:19:47 +0000 |
commit | d59aab9f81a82258e65721a9b48c4978d0d381c9 (patch) | |
tree | 523a419b09d6b02baeda8c6be86a80cb068b6179 /plugins/Watrack/kolframe/kolframe.pas | |
parent | a2f3375c0fa8ff246897d7b17c9a70ecd39a400d (diff) |
fix for another Watrack option pages
git-svn-id: http://svn.miranda-ng.org/main/trunk@13433 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/kolframe/kolframe.pas')
-rw-r--r-- | plugins/Watrack/kolframe/kolframe.pas | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Watrack/kolframe/kolframe.pas b/plugins/Watrack/kolframe/kolframe.pas index 49a541a206..20acfa9ffb 100644 --- a/plugins/Watrack/kolframe/kolframe.pas +++ b/plugins/Watrack/kolframe/kolframe.pas @@ -9,6 +9,8 @@ uses windows,kol,commdlg,messages,common,commctrl, KOLCCtrls, wat_api,wrapper,global,m_api,dbsettings,waticons,mirutils,
icobuttons,textblock,kolsizer;
+{$include resource.inc}
+
{$R frm.res}
{$include frm_data.inc}
@@ -298,13 +300,13 @@ begin count:=2;
if count=2 then
begin
- tmpl:='FRAME';
+ tmpl:=PAnsiChar(IDD_OPTION_FRAME);
proc:=@FrameViewDlg;
name:='Frame (main)';
end
else
begin
- tmpl:='FRAME2';
+ tmpl:=PAnsiChar(IDD_OPTION_FRAME2);
proc:=@FrameTextDlg;
name:='Frame (text)';
end;
|