Mailinglist Archive: yast-commit (203 mails)
| < Previous | Next > |
[yast-commit] r63780 - /trunk/snapper/src/dialogs.ycp
- From: jsuchome@xxxxxxxxxxxxxxxxx
- Date: Fri, 15 Apr 2011 07:52:28 -0000
- Message-id: <20110415075228.D10E132598@svn2.opensuse.org>
Author: jsuchome
Date: Fri Apr 15 09:52:27 2011
New Revision: 63780
URL: http://svn.opensuse.org/viewcvs/yast?rev=63780&view=rev
Log:
it can return nil
Modified:
trunk/snapper/src/dialogs.ycp
Modified: trunk/snapper/src/dialogs.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/snapper/src/dialogs.ycp?rev=63780&r1=63779&r2=63780&view=diff
==============================================================================
--- trunk/snapper/src/dialogs.ycp (original)
+++ trunk/snapper/src/dialogs.ycp Fri Apr 15 09:52:27 2011
@@ -506,7 +506,7 @@
{
// non-tracked file should be directory
if (current_file != "" &&
- (! haskey (files_index, current_file) || FileUtils::IsDirectory
(current_file)))
+ (! haskey (files_index, current_file) || FileUtils::IsDirectory
(current_file) == true))
{
void select_items (map<string,map> current_map, string prefix) {
selected_items[prefix] = !
selected_items[prefix]:false;
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Fri Apr 15 09:52:27 2011
New Revision: 63780
URL: http://svn.opensuse.org/viewcvs/yast?rev=63780&view=rev
Log:
it can return nil
Modified:
trunk/snapper/src/dialogs.ycp
Modified: trunk/snapper/src/dialogs.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/snapper/src/dialogs.ycp?rev=63780&r1=63779&r2=63780&view=diff
==============================================================================
--- trunk/snapper/src/dialogs.ycp (original)
+++ trunk/snapper/src/dialogs.ycp Fri Apr 15 09:52:27 2011
@@ -506,7 +506,7 @@
{
// non-tracked file should be directory
if (current_file != "" &&
- (! haskey (files_index, current_file) || FileUtils::IsDirectory
(current_file)))
+ (! haskey (files_index, current_file) || FileUtils::IsDirectory
(current_file) == true))
{
void select_items (map<string,map> current_map, string prefix) {
selected_items[prefix] = !
selected_items[prefix]:false;
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |