Menu

Commit [r169]  Maximize  Restore  History

If '/task' is passed on the command line, quit after the update check if there are no updates available.

tortoisesvn 2007-08-18

changed /trunk/src/CommitMonitor.cpp
changed /trunk/src/HiddenWindow.cpp
changed /trunk/src/HiddenWindow.h
/trunk/src/CommitMonitor.cpp Diff Switch to side-by-side view
--- a/trunk/src/CommitMonitor.cpp
+++ b/trunk/src/CommitMonitor.cpp
@@ -114,11 +114,14 @@
 
 		if (hiddenWindow.RegisterAndCreateWindow())
 		{
-			if (!parser.HasKey(_T("hidden")))
+			if (parser.HasKey(_T("task")))
+			{
+				hiddenWindow.SetTask(true);
+			}
+			else if (!parser.HasKey(_T("hidden")))
 			{
 				hiddenWindow.ShowDialog();
 			}
-
 			// Main message loop:
 			while (GetMessage(&msg, NULL, 0, 0))
 			{
/trunk/src/HiddenWindow.cpp Diff Switch to side-by-side view
Loading...
/trunk/src/HiddenWindow.h Diff Switch to side-by-side view
Loading...
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.