exposurses

Check-in [b5ca845268]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Identation changes only

Was meant to be like this in the first place

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: b5ca8452684c61194b4a3485fc1df7fe3db82bbdc8376593dc6c8241f0e654f9
User & Date: atomicules@lavabit.com 2013-07-10 13:13:55
Context
2013-07-10
13:14
Add initial usage of the User Pointer

Still need a way to get to the third menu and also need to actually do
something with the User Pointer function.

Baby steps though. check-in: b4468458f4 user: atomicules@lavabit.com tags: origin/master, trunk

13:13
Identation changes only

Was meant to be like this in the first place check-in: b5ca845268 user: atomicules@lavabit.com tags: origin/master, trunk

13:12
Remove unnecessary items from arrays

At least I don't think these are needed? check-in: e4e256f8b0 user: atomicules@lavabit.com tags: origin/master, trunk

Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to exposurses.c.

150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
				win = &iso_win;
					break;
			case KEY_RIGHT:
				menu = &shutter_menu;
				win = &shutter_win;
				 break;
			case KEY_DOWN:
			menu_driver(*menu, REQ_DOWN_ITEM);
			break;
			case KEY_UP:
			menu_driver(*menu, REQ_UP_ITEM);
			break;
			case KEY_NPAGE:
			menu_driver(*menu, REQ_SCR_DPAGE);
			break;
			case KEY_PPAGE:
			menu_driver(*menu, REQ_SCR_UPAGE);
			break;
		}
		wrefresh(*win);
	}	
	/* Unpost and free all the memory taken up */
	unpost_menu(iso_menu);
	unpost_menu(shutter_menu);







|


|


|


|







150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
				win = &iso_win;
					break;
			case KEY_RIGHT:
				menu = &shutter_menu;
				win = &shutter_win;
				 break;
			case KEY_DOWN:
				menu_driver(*menu, REQ_DOWN_ITEM);
			break;
			case KEY_UP:
				menu_driver(*menu, REQ_UP_ITEM);
			break;
			case KEY_NPAGE:
				menu_driver(*menu, REQ_SCR_DPAGE);
			break;
			case KEY_PPAGE:
				menu_driver(*menu, REQ_SCR_UPAGE);
			break;
		}
		wrefresh(*win);
	}	
	/* Unpost and free all the memory taken up */
	unpost_menu(iso_menu);
	unpost_menu(shutter_menu);