suppress some benign warnings
This commit is contained in:
@@ -220,7 +220,9 @@ void CurveWidget::UpdateBridgeTime(const int64_t ×tamp)
|
||||
void CurveWidget::ConnectNode(Node *node, bool connect)
|
||||
{
|
||||
foreach (const QString& input, node->inputs()) {
|
||||
ConnectInput(node, input, connect);
|
||||
if (node->IsInputKeyframable(input)) {
|
||||
ConnectInput(node, input, connect);
|
||||
}
|
||||
}
|
||||
|
||||
// Connect add/remove signals
|
||||
|
||||
@@ -140,6 +140,14 @@ void NodeTableView::SetTime(const rational &time)
|
||||
sub_item->setText(1, source_name);
|
||||
|
||||
switch (value.type()) {
|
||||
case NodeValue::kVideoParams:
|
||||
case NodeValue::kAudioParams:
|
||||
case NodeValue::kFootageJob:
|
||||
case NodeValue::kShaderJob:
|
||||
case NodeValue::kSampleJob:
|
||||
case NodeValue::kGenerateJob:
|
||||
// These types have no string representation
|
||||
break;
|
||||
case NodeValue::kTexture:
|
||||
{
|
||||
// NodeTableTraverser puts video params in here
|
||||
|
||||
Reference in New Issue
Block a user