Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
da14b842
Commit
da14b842
authored
Feb 28, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor clean up after merge conflict
parent
ca126d0d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
3 additions
and
79 deletions
+3
-79
sev/exe/sev_import/src/os_templ/hw_templ/makefile
sev/exe/sev_import/src/os_templ/hw_templ/makefile
+0
-12
sev/exe/sev_import/src/os_templ/link_rule.mk
sev/exe/sev_import/src/os_templ/link_rule.mk
+0
-19
sev/wbl/sev/src/os_templ/hw_templ/makefile
sev/wbl/sev/src/os_templ/hw_templ/makefile
+0
-20
simul/mmi/simul/src/os_templ/hw_templ/makefile
simul/mmi/simul/src/os_templ/hw_templ/makefile
+0
-20
wb/lib/wb/qt/wb_wnav_qt.cqt
wb/lib/wb/qt/wb_wnav_qt.cqt
+3
-8
No files found.
sev/exe/sev_import/src/os_templ/hw_templ/makefile
deleted
100644 → 0
View file @
ca126d0d
include
$(pwre_dir_symbols)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_kroot)/tools/bld/src/$(type_name)_generic.mk
endif
sev/exe/sev_import/src/os_templ/link_rule.mk
deleted
100644 → 0
View file @
ca126d0d
ifndef
link_rule_mk
link_rule_mk
:=
1
ifndef
pwre_cxx
ifeq
($(PWRE_CONF_LIBHDF5),1)
ldsev
=
mpic++
else
ldsev
=
$(ldxx)
endif
else
ldsev
=
$(pwre_cxx)
endif
link
=
$(ldsev)
$(elinkflags)
$(domap)
-o
$(export_exe)
\
$(export_obj)
$(objects)
$(wb_msg_eobjs)
$(rt_msg_eobjs)
\
$(pwr_eobj)
/rt_io_user.o
\
$(pwre_conf_libdir)
$(pwre_conf_libpwrsev)
$(pwre_conf_libpwrrt)
$(pwre_conf_lib)
endif
sev/wbl/sev/src/os_templ/hw_templ/makefile
deleted
100644 → 0
View file @
ca126d0d
include
$(pwre_dir_symbols)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_kroot)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
-include
../special.mk
-include
special.mk
simul/mmi/simul/src/os_templ/hw_templ/makefile
deleted
100644 → 0
View file @
ca126d0d
include
$(pwre_dir_symbols)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(hw_name)/$(type_name)_generic.mk
ifeq
($($(type_name)_generic_mk),)
-include
$(pwre_kroot)/tools/bld/src/$(os_name)/$(type_name)_generic.mk
endif
ifeq
($($(type_name)_generic_mk),)
include
$(pwre_kroot)/tools/bld/src/$(type_name)_generic.mk
endif
-include
../../special.mk
-include
../special.mk
-include
special.mk
wb/lib/wb/qt/wb_wnav_qt.cqt
View file @
da14b842
...
...
@@ -341,28 +341,23 @@ void WNavQtTraceObject::sel_convert_cb()
wnav->parent_ctx, attrref, &buffp, 0, 1, format);
if (sts) {
selection_data_set(wnav, server, buffp);
free(node_list);
return;
}
break;
}
case wnav_eItemType_Object: {
memset(&attrref, 0, sizeof(attrref));
attrref.Objid = item->objid;
attrref = cdh_ObjidToAref(item->objid);
int sts = (wnav->format_selection_cb)(
wnav->parent_ctx, attrref, &buffp, 0, 0, format);
if (sts) {
selection_data_set(wnav, server, buffp);
free(node_list);
return;
}
break;
}
default: {
char name[200];
brow_GetAnnotation(node_list[0], 0, name, sizeof(name));
selection_data_set(wnav, server, name);
free(node_list);
return;
break;
}
}
free(node_list);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment