From 2df79310283687d63b4179a673dc92e0ba98b948 Mon Sep 17 00:00:00 2001 From: Ladislav Slezak Date: Tue, 16 Jul 2013 10:09:26 +0200 Subject: [PATCH] move an include statement to the top level needed for Ruby translation --- package/yast2-network.changes | 6 ++++++ src/lan/hardware.ycp | 5 ++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/package/yast2-network.changes b/package/yast2-network.changes index 0c7f82d35..cea7268b1 100644 --- a/package/yast2-network.changes +++ b/package/yast2-network.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Jul 16 07:59:47 UTC 2013 - lslezak@suse.cz + +- move an include statement to the top level (needed for Ruby + translation) + ------------------------------------------------------------------- Thu Jun 20 06:49:08 UTC 2013 - mfilka@suse.com diff --git a/src/lan/hardware.ycp b/src/lan/hardware.ycp index 0cb154901..cf855b00d 100644 --- a/src/lan/hardware.ycp +++ b/src/lan/hardware.ycp @@ -41,6 +41,8 @@ import "Wizard"; import "LanItems"; include "network/summary.ycp"; include "network/routines.ycp"; +/* map NetworkCards */ +include "network/lan/cards.ycp"; /** * Determines if the dialog is used for adding new device or for editing existing one. @@ -309,9 +311,6 @@ define any SelectionDialog() { string type = LanItems::type; integer selected = 0; - /* map NetworkCards */ - include "network/lan/cards.ycp"; - list hwlist = NetworkCards[type]:[]; list cards = hwlist2items(hwlist, 0);