void HandlePrintCommand (object sender, EventArgs e)
	{
#if !GTK_2_10
		new FSpot.PrintDialog (SelectedPhotos ());
#else
		FSpot.PrintOperation print = new FSpot.PrintOperation (SelectedPhotos ());
		print.Run (PrintOperationAction.PrintDialog, null);
#endif
	}
예제 #2
0
파일: MainWindow.cs 프로젝트: mono/f-spot
		// XXX: never called
		void HandlePrintCommand (object sender, EventArgs e)
		{
			FSpot.PrintOperation print = new FSpot.PrintOperation (SelectedPhotos ());
			print.Run (PrintOperationAction.PrintDialog, null);
		}