Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

move an include statement to the top level #101

Merged
merged 1 commit into from
Jul 16, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions package/yast2-network.changes
Original file line number Diff line number Diff line change
@@ -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

Expand Down
5 changes: 2 additions & 3 deletions src/lan/hardware.ycp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -309,9 +311,6 @@ define any SelectionDialog() {
string type = LanItems::type;
integer selected = 0;

/* map NetworkCards */
include "network/lan/cards.ycp";

list<map> hwlist = NetworkCards[type]:[];
list cards = hwlist2items(hwlist, 0);

Expand Down