Changeset 6dca10f in mainline
- Timestamp:
- 2020-11-09T18:26:27Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d71fd6
- Parents:
- b41564c
- Location:
- uspace/app
- Files:
-
- 2 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/calculator/calculator.c
rb41564c r6dca10f 28 28 */ 29 29 30 /** @addtogroup vcalc30 /** @addtogroup calculator 31 31 * @{ 32 32 */ … … 48 48 #include <ui/window.h> 49 49 50 #define NAME " vcalc"50 #define NAME "calculator" 51 51 52 52 #define NULL_DISPLAY "0" -
uspace/app/calculator/doc/doxygroups.h
rb41564c r6dca10f 1 /** @addtogroup vcalc vcalc1 /** @addtogroup calculator calculator 2 2 * @brief Calculator 3 3 * @ingroup apps -
uspace/app/calculator/meson.build
rb41564c r6dca10f 1 1 # 2 # Copyright (c) 20 12 Petr Koupy2 # Copyright (c) 2020 Jiri Svoboda 3 3 # All rights reserved. 4 4 # … … 28 28 29 29 deps = [ 'ui' ] 30 src = files(' vcalc.c')30 src = files('calculator.c') -
uspace/app/launcher/launcher.c
rb41564c r6dca10f 101 101 app_launch("/app/terminal"); 102 102 } else if (pbutton == launcher->pb2) { 103 app_launch("/app/ vcalc");103 app_launch("/app/calculator"); 104 104 } else if (pbutton == launcher->pb3) { 105 105 app_launch("/app/uidemo"); -
uspace/app/meson.build
rb41564c r6dca10f 32 32 'bithenge', 33 33 'blkdump', 34 'calculator', 34 35 'contacts', 35 36 'corecfg', … … 90 91 'untar', 91 92 'usbinfo', 92 'vcalc',93 93 'vdemo', 94 94 'viewer',
Note:
See TracChangeset
for help on using the changeset viewer.