diff options
author | Michele Calgaro <[email protected]> | 2024-08-24 20:52:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-08-29 22:23:36 +0900 |
commit | 367ff3fb9e3933f6704c98359cdd8d934ace941f (patch) | |
tree | 7e03c953d16dcaf0e89f54079b8415a578a22893 /examples/drawdemo | |
parent | d35eedcd87d59e716c6d49bbb6b634ef1a7660c5 (diff) | |
download | tqt3-367ff3fb9e3933f6704c98359cdd8d934ace941f.tar.gz tqt3-367ff3fb9e3933f6704c98359cdd8d934ace941f.zip |
Rename global classes nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'examples/drawdemo')
-rw-r--r-- | examples/drawdemo/drawdemo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/drawdemo/drawdemo.cpp b/examples/drawdemo/drawdemo.cpp index bc3d6ae3c..6f34c746f 100644 --- a/examples/drawdemo/drawdemo.cpp +++ b/examples/drawdemo/drawdemo.cpp @@ -176,7 +176,7 @@ DrawView::DrawView() // ourDrawFunctions-array. for ( i=0; (n=ourDrawFunctions[i].name) != 0; i++ ) { int w = fm.width( n ); - maxwidth = TQMAX(w,maxwidth); // TQMAX is a macro defined in ntqglobal.h + maxwidth = TQMAX(w,maxwidth); // TQMAX is a macro defined in tqglobal.h // and returns the biggest of to values. // Due to its macro nature one should use it with care and with // constant parameters only. |