mirror of
https://gitee.com/energye/energy.git
synced 2024-12-14 01:11:39 +08:00
25 lines
488 B
Go
25 lines
488 B
Go
|
//----------------------------------------
|
||
|
//
|
||
|
// Copyright © yanghy. All Rights Reserved.
|
||
|
//
|
||
|
// Licensed under Apache License Version 2.0, January 2004
|
||
|
//
|
||
|
// https://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
//----------------------------------------
|
||
|
|
||
|
//go:build !windows
|
||
|
|
||
|
package cef
|
||
|
|
||
|
import (
|
||
|
"github.com/energye/golcl/lcl/types"
|
||
|
)
|
||
|
|
||
|
func (m *lclBrowserWindow) onFormWndProc(msg *types.TMessage) {
|
||
|
m.InheritedWndProc(msg)
|
||
|
if m.onMainFormWndProc != nil {
|
||
|
m.onMainFormWndProc(msg)
|
||
|
}
|
||
|
}
|